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

Skip to content

Commit f1e22e4

Browse files
authored
Merge branch 'develop' into issue-357
2 parents 413e63f + ce2d8ad commit f1e22e4

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

docs/userguide/coverage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,14 +127,14 @@ begin
127127
'usr',
128128
ut_coverage_html_reporter(),
129129
a_source_file_mappings =>
130-
ut_coverage_file_mappings(
131-
ut_coverage_file_mapping(
130+
ut_file_mappings(
131+
ut_file_mapping(
132132
file_name => 'sources/hr/award_bonus.prc',
133133
object_owner => 'USR',
134134
object_name => 'AWARD_BONUS',
135135
object_type => 'PROCEDURE'
136136
),
137-
ut_coverage_file_mapping(
137+
ut_file_mapping(
138138
file_name => 'sources/hr/betwnstr.fnc',
139139
object_owner => 'USR',
140140
object_name => 'BETWNSTR',

tests/lib/RunTest.sql

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,18 @@ exec :test_result := null;
44
prompt Executing test: &1
55
exec :test_start_time := dbms_utility.get_time;
66
@@&1
7-
7+
set serveroutput on size unlimited format truncated
8+
set termout on
89
declare
910
l_duration_str varchar2(300) := ', executed in: '||((dbms_utility.get_time - :test_start_time)/100)||' second(s)';
1011
begin
1112
case
1213
when :test_result = ut_utils.tr_success then
1314
:successes_count := :successes_count + 1;
1415
else
16+
dbms_output.put_line('---------------------------------------');
1517
dbms_output.put_line(' Failure'||l_duration_str);
18+
dbms_output.put_line('---------------------------------------');
1619
:failures_count := :failures_count + 1;
1720
end case;
1821
end;

0 commit comments

Comments
 (0)