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: source/reporters/ut_teamcity_reporter_helper.pkb
+1-34Lines changed: 1 addition & 34 deletions
Original file line number
Diff line number
Diff line change
@@ -45,22 +45,6 @@ create or replace package body ut_teamcity_reporter_helper is
45
45
46
46
end message;
47
47
48
-
-- function block_opened(a_name varchar2, a_flow_id varchar2 default null) return varchar2 is
49
-
-- l_props t_props;
50
-
-- begin
51
-
-- l_props('name') := a_name;
52
-
-- l_props('flowId') := a_flow_id;
53
-
-- return message('blockOpened', l_props);
54
-
-- end;
55
-
--
56
-
-- function block_closed(a_name varchar2, a_flow_id varchar2 default null) return varchar2 is
57
-
-- l_props t_props;
58
-
-- begin
59
-
-- l_props('name') := a_name;
60
-
-- l_props('flowId') := a_flow_id;
61
-
-- return message('blockClosed', l_props);
62
-
-- end;
63
-
--
64
48
function test_suite_started(a_suite_name varchar2, a_flow_id varchar2 default null) return varchar2 is
65
49
l_props t_props;
66
50
begin
@@ -123,14 +107,7 @@ create or replace package body ut_teamcity_reporter_helper is
123
107
124
108
return message('testFailed', l_props);
125
109
end;
126
-
-- function test_std_out(a_test_name varchar2, a_out in varchar2, a_flow_id in varchar2 default null) return varchar2 is
127
-
-- l_props t_props;
128
-
-- begin
129
-
-- l_props('name') := a_test_name;
130
-
-- l_props('out') := a_out;
131
-
-- l_props('flowId') := a_flow_id;
132
-
-- return message('testStdOut', l_props);
133
-
-- end;
110
+
134
111
function test_std_err(a_test_name varchar2, a_out in varchar2, a_flow_id in varchar2 default null) return varchar2 is
135
112
l_props t_props;
136
113
begin
@@ -140,15 +117,5 @@ create or replace package body ut_teamcity_reporter_helper is
140
117
return message('testStdErr', l_props);
141
118
end;
142
119
143
-
-- function custom_message(a_text in varchar2, a_status in varchar2, a_error_deatils in varchar2 default null, a_flow_id in varchar2 default null) return varchar2 is
-- function test_std_out(a_test_name varchar2, a_out in varchar2, a_flow_id in varchar2 default null) return varchar2;
30
26
function test_std_err(a_test_name varchar2, a_out in varchar2, a_flow_id in varchar2 default null) return varchar2;
31
27
32
-
-- function custom_message(a_text in varchar2, a_status in varchar2, a_error_deatils in varchar2 default null, a_flow_id in varchar2 default null) return varchar2;
0 commit comments