Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Prev Previous commit
Merge branch 'develop' into feature/cleanup_code_and_tests_a_bit
# Conflicts:
#	source/api/ut_runner.pkb
#	test/api/test_ut_run.pks
  • Loading branch information
Pavel Kaplya committed Jul 18, 2018
commit 0e0d2dcb21053ef13e9d45dfb043c464294fabe4
11 changes: 5 additions & 6 deletions source/api/ut_runner.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -89,22 +89,21 @@ create or replace package body ut_runner is
l_coverage_schema_names ut_varchar2_rows;
l_exclude_object_names ut_object_names := ut_object_names();
l_include_object_names ut_object_names;
l_paths ut_varchar2_list;
l_paths ut_varchar2_list := ut_varchar2_list();
begin
ut_event_manager.initialize();
if a_paths is null or a_paths is empty or a_paths.count = 1 and a_paths(1) is null then
l_paths := ut_varchar2_list(sys_context('userenv', 'current_schema'));
else
l_paths := a_paths;
for i in 1..a_paths.COUNT loop
l_paths := l_paths multiset union ut_utils.string_to_table(a_string => a_paths(i),a_delimiter => ',');
end loop;
end if;

begin
ut_expectation_processor.reset_invalidation_exception();
ut_utils.save_dbms_output_to_cache();

for i in 1..a_paths.COUNT loop
l_paths := l_paths multiset union ut_utils.string_to_table(a_string => a_paths(i),a_delimiter => ',');
end loop;

ut_console_reporter_base.set_color_enabled(a_color_console);
if a_reporters is null or a_reporters.count = 0 then
ut_event_manager.add_listener(ut_documentation_reporter());
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.