Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dcbc01b + c7de930 commit 0303361Copy full SHA for 0303361
1 file changed
source/reporters/ut_documentation_reporter.tpb
@@ -69,7 +69,9 @@ create or replace type body ut_documentation_reporter is
69
self.print_text(lpad(a_failure_no, length(failed_test_running_count)+2,' ')||') '||nvl( a_test.name, a_test.item.form_name ));
70
self.lvl := self.lvl + 3;
71
for j in 1 .. a_test.results.count loop
72
- print_failure_for_assert(a_test.results(j));
+ if a_test.results(j).result > ut_utils.tr_success then
73
+ print_failure_for_assert(a_test.results(j));
74
+ end if;
75
end loop;
76
lvl := lvl - 3;
77
end if;
0 commit comments