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/annotations.md
+18-11Lines changed: 18 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1243,7 +1243,7 @@ or
1243
1243
1244
1244
1245
1245
1246
-
Tags are defined as a coma separated list. When executing a tests filtering by tag utPLSQL will find all tests associated with a given tag and execute it. It will apply `OR` logic when resolving a tags so any tests / suites that got matching at least one tag will get executed.
1246
+
Tags are defined as a coma separated list. When executing a test run with tag filter applied, framework will find all tests associated with given tags and execute them. Framework applies `OR` logic when resolving a tags so any tests / suites that match at least one tag will be included in the test run.
1247
1247
1248
1248
When a suite gets tagged all of its children will automatically inherit a tag and get executed along the parent. Parent suit tests are not executed. but a suitepath hierarchy is kept.
1249
1249
@@ -1259,9 +1259,9 @@ create or replace PACKAGE ut_sample_test IS
1259
1259
--%tag(test1,sample)
1260
1260
PROCEDURE ut_refcursors1;
1261
1261
1262
-
--%test(Compare Ref Cursors #2)
1262
+
--%test(Run equality test)
1263
1263
--%tag(test2,sample)
1264
-
PROCEDURE ut_refcursors2;
1264
+
PROCEDURE ut_test;
1265
1265
1266
1266
END ut_sample_test;
1267
1267
/
@@ -1278,21 +1278,16 @@ create or replace PACKAGE BODY ut_sample_test IS
1278
1278
ut.expect(v_actual).to_equal(v_expected);
1279
1279
END;
1280
1280
1281
-
PROCEDURE ut_refcursors2 IS
1282
-
v_actual SYS_REFCURSOR;
1283
-
v_expected SYS_REFCURSOR;
1281
+
PROCEDURE ut_test IS
1284
1282
BEGIN
1285
-
open v_expected for select1as test from dual;
1286
-
open v_actual for select2as test from dual;
1287
-
1288
-
ut.expect(v_actual).to_equal(v_expected);
1283
+
ut.expect(1).to_equal(0);
1289
1284
END;
1290
1285
1291
1286
END ut_sample_test;
1292
1287
/
1293
1288
```
1294
1289
1295
-
Execution of the test is done by using a new parameter `a_tags`
1290
+
Execution of the test is done by using a parameter `a_tags`
0 commit comments