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
The realtime_reporter introduced in v3.1.4 reports the number of warnings on test and suite level, but does not provide the warning texts. Hence clients such utPLSQL for SQL Developer cannot provide warning texts.
create or replace package check_realtime_reporting4 is
--%suite--%suitepath(realtime_reporting)/* tag annotation without parameter will raise a warning */--%tags--%test
procedure test_8_with_warning;
end;
/
create or replace package body check_realtime_reporting4 is
procedure test_8_with_warning is
begincommit; -- this will raise a warningut3.ut.expect(8).to_equal(8);
end;
end;
/
Run test
set serveroutput on
exec ut.run('check_realtime_reporting4', ut_realtime_reporter());
Describe the bug
The realtime_reporter introduced in v3.1.4 reports the number of warnings on test and suite level, but does not provide the warning texts. Hence clients such utPLSQL for SQL Developer cannot provide warning texts.
Provide version info
Information about client software
not relevant
To Reproduce
this will produce the following output:
Please note that there are
warning
tags in the XML documents providing the number of warnings found, but no warning texts.Expected behavior
add
warnings
tags to the output document for event types:post-test
post-suite
The text was updated successfully, but these errors were encountered: