File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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+ /
You can’t perform that action at this time.
0 commit comments