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_documentation_reporter.tpb
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,17 @@ create or replace type body ut_documentation_reporter is
44
44
45
45
overriding member procedure after_calling_test(self in out nocopy ut_documentation_reporter, a_test ut_test) as
46
46
l_message varchar2(4000);
47
+
48
+
procedure print_output(a_exectable ut_executable) is
49
+
l_lines ut_varchar2_list;
50
+
begin
51
+
if a_exectable is not null and a_exectable.is_defined and a_exectable.serveroutput is not null and dbms_lob.getlength(a_exectable.serveroutput) > 0 then
0 commit comments