You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/ut3_user/reporters/test_tap_reporter.pkb
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ create or replace package body test_tap_reporter as
6
6
l_output_data ut3_develop.ut_varchar2_list;
7
7
l_expected varchar2(32767);
8
8
begin
9
-
l_expected := gc_boilerplate_suitepath_expression || '\s*1..1\s*# <!beforeall!>\s*# Subtest: A description of some context\s*1..1\s*ok - passing_test\s*# <!afterall!>\s*ok - org\s*';
9
+
l_expected := gc_boilerplate_suitepath_expression || '\s{21}1..1\s{21}# <!beforeall!>\s{21}# Subtest: A description of some context\s{25}1..1\s{25}ok - passing_test\s{21}# <!afterall!>\sok - org\s*';
10
10
11
11
select *
12
12
bulk collect into l_output_data
@@ -19,7 +19,7 @@ create or replace package body test_tap_reporter as
19
19
l_output_data ut3_develop.ut_varchar2_list;
20
20
l_expected varchar2(32767);
21
21
begin
22
-
l_expected := gc_boilerplate_suitepath_expression || q'[\s*1..1\s*# <!beforeall!>\s*not ok - a test with failing assertion\s*---\s*message: '"Fails as values are different"'\s*severity: fail\s*...\s*# <!afterall!>\s*not ok - org\s*]';
22
+
l_expected := gc_boilerplate_suitepath_expression || q'[\s{21}1..1\s{21}# <!beforeall!>\s{21}not ok - a test with failing assertion\s{23}---\s{23}message: '"Fails as values are different"'\s{23}severity: fail\s{23}...\s{21}# <!afterall!>\snot ok - org\s*]';
23
23
24
24
select *
25
25
bulk collect into l_output_data
@@ -33,7 +33,7 @@ create or replace package body test_tap_reporter as
33
33
l_output_data ut3_develop.ut_varchar2_list;
34
34
l_expected varchar2(32767);
35
35
begin
36
-
l_expected := gc_boilerplate_suitepath_expression || q'[\s*1..1\s*# <!beforeall!>\s*not ok - a test raising unhandled exception\s*---\s*message: |\s*ORA-06502: .*\s*ORA-06512: .*\s*ORA-06512: .*\s*ORA-06512: at line [[:digit:]]+\s*severity: error\s*...\s*# <!afterall!>\s*not ok - org\s*]';
36
+
l_expected := gc_boilerplate_suitepath_expression || q'[\s{21}1..1\s{21}# <!beforeall!>\s{21}not ok - a test raising unhandled exception\s{23}---\s{23}message: |\s{25ORA-06502: .*\s{25}ORA-06512: .*\s{25}ORA-06512: .*\s{25}ORA-06512: at line [[:digit:]]+\s{23}severity: error\s{23}...\s{21}# <!afterall!>\snot ok - org\s*]';
37
37
38
38
select *
39
39
bulk collect into l_output_data
@@ -47,7 +47,7 @@ create or replace package body test_tap_reporter as
47
47
l_output_data ut3_develop.ut_varchar2_list;
48
48
l_expected varchar2(32767);
49
49
begin
50
-
l_expected := gc_boilerplate_suitepath_expression || q'[\s*1..1\s*# <!beforeall!>\s*ok - a disabled test # SKIP: Disabled for testing purpose\s*# <!afterall!>\s*ok - org\s*]';
50
+
l_expected := gc_boilerplate_suitepath_expression || q'[\s{21}1..1\s{21}# <!beforeall!>\s{21}ok - a disabled test # SKIP: Disabled for testing purpose\s{21}# <!afterall!>\sok - org\s*]';
51
51
52
52
select *
53
53
bulk collect into l_output_data
@@ -61,7 +61,7 @@ create or replace package body test_tap_reporter as
61
61
l_output_data ut3_develop.ut_varchar2_list;
62
62
l_expected varchar2(32767);
63
63
begin
64
-
l_expected := gc_boilerplate_suitepath_expression || q'[\s*1..1\s*# <!beforeall!>\s*ok - a disabled test with no reason # SKIP\s*# <!afterall!>\s*ok - org\s*]';
64
+
l_expected := gc_boilerplate_suitepath_expression || q'[\s{21}1..1\s{21}# <!beforeall!>\s{21}ok - a disabled test with no reason # SKIP\s{21}# <!afterall!>\sok - org\s*]';
0 commit comments