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: test/core/reporters/test_extended_coverage.pkb
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -21,10 +21,10 @@ create or replace package body test_extended_coverage is
21
21
procedure create_dummy_coverage_package is
22
22
pragma autonomous_transaction;
23
23
begin
24
-
execute immediate q'[create or replace package UT3.DUMMY_COVERAGE is
24
+
execute immediate q'[create or replace package UT3.DUMMY_COVERAGE_PACKAGE_WITH_AN_AMAZINGLY_LONG_NAME_THAT_YOU_WOULD_NOT_THINK_OF_IN_REAL_LIFE_PROJECT_BECAUSE_ITS_SIMPLY_TOO_LONG is
25
25
procedure do_stuff(i_input in number);
26
26
end;]';
27
-
execute immediate q'[create or replace package body UT3.DUMMY_COVERAGE is
27
+
execute immediate q'[create or replace package body UT3.DUMMY_COVERAGE_PACKAGE_WITH_AN_AMAZINGLY_LONG_NAME_THAT_YOU_WOULD_NOT_THINK_OF_IN_REAL_LIFE_PROJECT_BECAUSE_ITS_SIMPLY_TOO_LONG is
28
28
procedure do_stuff(i_input in number) is
29
29
begin
30
30
if i_input = 2 then
@@ -49,7 +49,7 @@ create or replace package body test_extended_coverage is
49
49
execute immediate q'[create or replace package body UT3.TEST_DUMMY_COVERAGE is
insert into ut3.plsql_profiler_data ( runid, unit_number, line#, total_occur, total_time)
84
84
select a_run_id, c_unit_id, 4, 1, 1 from dual union all
@@ -104,7 +104,7 @@ create or replace package body test_extended_coverage is
104
104
pragma autonomous_transaction;
105
105
begin
106
106
begin execute immediate q'[drop package ut3.test_dummy_coverage]'; exception when others then null; end;
107
-
begin execute immediate q'[drop package ut3.dummy_coverage]'; exception when others then null; end;
107
+
begin execute immediate q'[drop package ut3.dummy_coverage_package_with_an_amazingly_long_name_that_you_would_not_think_of_in_real_life_project_because_its_simply_too_long]'; exception when others then null; end;
108
108
delete from dbmspcc_blocks where run_id = g_run_id(ut3.ut_coverage.gc_block_coverage);
109
109
delete from dbmspcc_units where run_id = g_run_id(ut3.ut_coverage.gc_block_coverage);
110
110
delete from dbmspcc_runs where run_id = g_run_id(ut3.ut_coverage.gc_block_coverage);
@@ -120,15 +120,15 @@ create or replace package body test_extended_coverage is
0 commit comments