You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/userguide/running-unit-tests.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ The **functions** can only be used in SELECT statements. They execute the specif
46
46
47
47
The examples below illustrate different ways and options to invoke `ut.run` procedures.
48
48
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.
49
50
Schema name cannot contain a wildcard character whether is in a suitepath call or call by object name.
50
51
51
52
```sql
@@ -86,6 +87,15 @@ end;
86
87
87
88
Executes all tests in schema `hr` from all packages that are on suitepath starting with `com`.
88
89
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` .
0 commit comments