Skip to content

Commit 9a514bf

Browse files
committed
forgotten commit
1 parent 4f0f712 commit 9a514bf

2 files changed

Lines changed: 27 additions & 0 deletions

File tree

examples/RunAllExamples.sql

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Clear Screen
2+
set echo off
3+
set feedback off
4+
@@RunExampleComplexSuiteWithCustomDBMSOutputReporter.sql
5+
@@RunExampleTestSuite.sql
6+
@@RunExampleTestSuiteWithCustomDBMSOutputReporter.sql
7+
@@RunExampleTestSuiteWithDBMSOutputReporter.sql
8+
@@RunExampleTestThroughBaseClass.sql

examples/TestNoPackageName.sql

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
--Reports error when package name is null.
2+
--Clear Screen
3+
Set Serveroutput On Size Unlimited format truncated
4+
set echo off
5+
6+
declare
7+
simple_test ut_test;
8+
begin
9+
10+
simple_test := ut_test(a_object_name => NULL
11+
,a_test_procedure => 'ut_exampletest'
12+
,a_test_name => 'Simple test1'
13+
,a_owner_name => user
14+
,a_setup_procedure => 'setup'
15+
,a_teardown_procedure => 'teardown');
16+
17+
simple_test.execute(ut_dbms_output_suite_reporter);
18+
end;
19+
/

0 commit comments

Comments
 (0)