File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -955,6 +955,16 @@ end;]';
955955 ut.expect(sqlerrm).to_be_like('%failing_non_*%');
956956 end;
957957
958+ procedure test_search_nonex_prc_wild is
959+ l_objects_to_run ut3_develop.ut_suite_items;
960+ begin
961+ l_objects_to_run := ut3_develop.ut_suite_manager.configure_execution_by_path(ut3_develop.ut_varchar2_list('ut3_develop.test_package_1.nonexist*'));
962+ ut.fail('Non existing package did not raise exception');
963+ exception
964+ when others then
965+ ut.expect(sqlerrm).to_be_like('%failing_non_*%');
966+ end;
967+
958968 procedure test_search_nonex_path_wild is
959969 l_objects_to_run ut3_develop.ut_suite_items;
960970 begin
Original file line number Diff line number Diff line change @@ -78,7 +78,10 @@ create or replace package test_suite_manager is
7878
7979 --%test(Prepare runner for nonexisting package using wildcard filter)
8080 procedure test_search_nonex_pck_wild;
81-
81+
82+ --%test(Prepare runner for nonexisting procedure using wildcard filter)
83+ procedure test_search_nonex_prc_wild;
84+
8285 --%test(Prepare runner for nonexisting path using wildcard filter)
8386 procedure test_search_nonex_path_wild;
8487
You can’t perform that action at this time.
0 commit comments