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

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
corrected examples to eliminate calls to deprecated procedures:
`run_schema_suites`
`run_schema_suites_static`
`run_cur_schema_suites`
`run_cur_schema_suites_static`
  • Loading branch information
Pazus committed Dec 7, 2016
commit 81123bb341d6e8ba7b9b7623b6d2a6122b4b40ea
1 change: 1 addition & 0 deletions examples/RunAllExamples.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
PROMPT Run all examples
Clear Screen
set echo off
set feedback off
Expand Down
4 changes: 2 additions & 2 deletions examples/RunExampleTestAnnotationBasedForCurrentSchema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ set echo off
@@ut_custom_reporter.tps
@@ut_custom_reporter.tpb

begin
ut_suite_manager.run_cur_schema_suites_static(ut_custom_reporter(a_tab_size => 2));
begin
ut.run(user, ut_custom_reporter(a_tab_size => 2));
end;
/

Expand Down
2 changes: 1 addition & 1 deletion examples/RunExpectations.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ set echo off
@@ut_custom_reporter.tpb

begin
ut_suite_manager.run_cur_schema_suites_static(ut_documentation_reporter(), a_force_parse_again => true);
ut.run(user, ut_documentation_reporter());
end;
/

Expand Down
2 changes: 1 addition & 1 deletion examples/RunWithDocumentationReporter.sql
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ end;
/

begin
ut_suite_manager.run_cur_schema_suites_static(ut_documentation_reporter(), a_force_parse_again => true);
ut.run(user, ut_documentation_reporter());
end;
/

Expand Down