Skip to content
Merged
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
10 changes: 1 addition & 9 deletions docs/userguide/running-unit-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,6 @@ end;
```
Executes all tests from package _hr.test_apply_bonus_ and all tests from schema _cust_.

```sql linenums="1"
Comment thread
jgebal marked this conversation as resolved.
set serveroutput on
begin
ut.run(ut_varchar2_list('hr.test_apply_bonus,cust)');
end;
```

Executes all tests from package _hr.test_apply_bonus_ and all tests from schema _cust_.

```sql linenums="1"
set serveroutput on
Expand Down Expand Up @@ -566,4 +558,4 @@ Example call with characterset provided:
begin
ut.run('hr.test_apply_bonus', ut_junit_reporter(), a_client_character_set => 'Windows-1251');
end;
```
```