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

Skip to content

Commit 51439d8

Browse files
committed
Update documentation
1 parent 870cfe4 commit 51439d8

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

docs/userguide/running-unit-tests.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ The **functions** can only be used in SELECT statements. They execute the specif
4646

4747
The examples below illustrate different ways and options to invoke `ut.run` procedures.
4848
You can use a wildcard character `*` to call tests by part of their name or to call tests that are located on paths matched by part of path string.
49+
Wildcard character can be placed anywhere on the path and can occur mutliple times.
4950
Schema name cannot contain a wildcard character whether is in a suitepath call or call by object name.
5051

5152
```sql
@@ -86,6 +87,15 @@ end;
8687

8788
Executes all tests in schema `hr` from all packages that are on suitepath starting with `com`.
8889

90+
```sql
91+
set serveroutput on
92+
begin
93+
ut.run('hr:co*.my_*.my_*');
94+
end;
95+
```
96+
97+
Executes all tests in schema `hr` from all packages that starting with `my_` and all tests starting with `my_*` that are on suitepath starting with `co` .
98+
8999
```sql
90100
set serveroutput on
91101
begin

0 commit comments

Comments
 (0)