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

Skip to content

Commit d0a1aac

Browse files
authored
Merge pull request #671 from PhilippSalvisberg/bugfix/fix_typo_in_annotations_md
fix typos in test descriptions ("tested" instead of "tesed")
2 parents e7663b6 + 95cf9f9 commit d0a1aac

1 file changed

Lines changed: 24 additions & 24 deletions

File tree

docs/userguide/annotations.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Test procedure with description.
173173
create or replace package test_package as
174174
--%suite(Tests for a package)
175175

176-
--%test(Description of tesed behavior)
176+
--%test(Description of tested behavior)
177177
procedure some_test;
178178
end;
179179
/
@@ -188,7 +188,7 @@ exec ut.run('test_package');
188188
```
189189
```
190190
Tests for a package
191-
Description of tesed behavior [.005 sec]
191+
Description of tested behavior [.005 sec]
192192
193193
Finished in .006828 seconds
194194
1 tests, 0 failed, 0 errored, 0 disabled, 0 warning(s)
@@ -199,7 +199,7 @@ When multiple `--%test` annotations are specified for a procedure, the first ann
199199
create or replace package test_package as
200200
--%suite(Tests for a package)
201201

202-
--%test(Description of tesed behavior)
202+
--%test(Description of tested behavior)
203203
--%test(Duplicate description)
204204
procedure some_test;
205205
end;
@@ -215,7 +215,7 @@ exec ut.run('test_package');
215215
```
216216
```
217217
Tests for a package
218-
Description of tesed behavior [.007 sec]
218+
Description of tested behavior [.007 sec]
219219
220220
221221
Warnings:
@@ -237,7 +237,7 @@ create or replace package test_package as
237237
--%suite(Tests for a package)
238238
--%disabled
239239

240-
--%test(Description of tesed behavior)
240+
--%test(Description of tested behavior)
241241
procedure some_test;
242242

243243
--%test(Description of another behavior)
@@ -258,7 +258,7 @@ exec ut.run('test_package');
258258
```
259259
```
260260
Tests for a package
261-
Description of tesed behavior [0 sec] (DISABLED)
261+
Description of tested behavior [0 sec] (DISABLED)
262262
Description of another behavior [0 sec] (DISABLED)
263263
264264
Finished in .001441 seconds
@@ -270,7 +270,7 @@ Disabling individual test(s).
270270
create or replace package test_package as
271271
--%suite(Tests for a package)
272272

273-
--%test(Description of tesed behavior)
273+
--%test(Description of tested behavior)
274274
procedure some_test;
275275

276276
--%test(Description of another behavior)
@@ -292,7 +292,7 @@ exec ut.run('test_package');
292292
```
293293
```
294294
Tests for a package
295-
Description of tesed behavior [.004 sec]
295+
Description of tested behavior [.004 sec]
296296
Description of another behavior [0 sec] (DISABLED)
297297
298298
Finished in .005868 seconds
@@ -320,7 +320,7 @@ For multiple `--%beforeall` procedures order of execution is defined by annotati
320320
create or replace package test_package as
321321
--%suite(Tests for a package)
322322

323-
--%test(Description of tesed behavior)
323+
--%test(Description of tested behavior)
324324
procedure some_test;
325325

326326
--%test(Description of another behavior)
@@ -350,7 +350,7 @@ exec ut.run('test_package');
350350
```
351351
Tests for a package
352352
--- SETUP_STUFF invoked ---
353-
Description of tesed behavior [.004 sec]
353+
Description of tested behavior [.004 sec]
354354
Description of another behavior [.003 sec]
355355
356356
Finished in .012292 seconds
@@ -366,7 +366,7 @@ The `another_setup` still gets invoked before any test from that suite package i
366366
--%beforeall
367367
procedure initial_setup;
368368

369-
--%test(Description of tesed behavior)
369+
--%test(Description of tested behavior)
370370
procedure some_test;
371371

372372
--%test(Description of another behavior)
@@ -402,7 +402,7 @@ The `another_setup` still gets invoked before any test from that suite package i
402402
Tests for a package
403403
--- INITIAL_SETUP invoked ---
404404
--- ANOTHER_SETUP invoked ---
405-
Description of tesed behavior [.004 sec]
405+
Description of tested behavior [.004 sec]
406406
Description of another behavior [.004 sec]
407407
408408
Finished in .016672 seconds
@@ -419,7 +419,7 @@ When procedure is annotated as both `--%beforeall` and `--%test`, the procedure
419419
--%beforeall
420420
procedure initial_setup;
421421

422-
--%test(Description of tesed behavior)
422+
--%test(Description of tested behavior)
423423
--%beforeall
424424
procedure some_test;
425425

@@ -448,7 +448,7 @@ When procedure is annotated as both `--%beforeall` and `--%test`, the procedure
448448
```
449449
Tests for a package
450450
--- INITIAL_SETUP invoked ---
451-
Description of tesed behavior [.003 sec]
451+
Description of tested behavior [.003 sec]
452452
Description of another behavior [.004 sec]
453453
454454
@@ -487,7 +487,7 @@ All rules defined for `--%beforeall` also apply for `--%afterall` annotation. Se
487487
create or replace package test_package as
488488
--%suite(Tests for a package)
489489

490-
--%test(Description of tesed behavior)
490+
--%test(Description of tested behavior)
491491
procedure some_test;
492492

493493
--%test(Description of another behavior)
@@ -516,7 +516,7 @@ exec ut.run('test_package');
516516
```
517517
```
518518
Tests for a package
519-
Description of tesed behavior [.003 sec]
519+
Description of tested behavior [.003 sec]
520520
Description of another behavior [.005 sec]
521521
---CLEANUP_STUFF invoked ---
522522
@@ -550,7 +550,7 @@ For multiple `--%beforeeach` procedures order of execution is defined by annotat
550550
create or replace package test_package as
551551
--%suite(Tests for a package)
552552

553-
--%test(Description of tesed behavior)
553+
--%test(Description of tested behavior)
554554
procedure some_test;
555555

556556
--%test(Description of another behavior)
@@ -593,7 +593,7 @@ exec ut.run('test_package');
593593
```
594594
Tests for a package
595595
---SETUP_STUFF invoked ---
596-
Description of tesed behavior [.004 sec]
596+
Description of tested behavior [.004 sec]
597597
---SETUP_FOR_TEST invoked ---
598598
---SOME_TEST invoked ---
599599
Description of another behavior [.006 sec]
@@ -630,7 +630,7 @@ As a rule, the `--%aftereach` gets executed even if the associated `--%beforeeac
630630
create or replace package test_package as
631631
--%suite(Tests for a package)
632632

633-
--%test(Description of tesed behavior)
633+
--%test(Description of tested behavior)
634634
procedure some_test;
635635

636636
--%test(Description of another behavior)
@@ -671,7 +671,7 @@ exec ut.run('test_package');
671671
```
672672
```
673673
Tests for a package
674-
Description of tesed behavior [.006 sec]
674+
Description of tested behavior [.006 sec]
675675
---SOME_TEST invoked ---
676676
---CLEANUP_FOR_TEST invoked ---
677677
Description of another behavior [.006 sec]
@@ -709,7 +709,7 @@ As a rule, the `--%beforetest` execution gets aborted if preceding `--%beforeeac
709709
create or replace package test_package as
710710
--%suite(Tests for a package)
711711

712-
--%test(Description of tesed behavior)
712+
--%test(Description of tested behavior)
713713
--%beforetest(setup_for_a_test)
714714
--%beforetest(another_setup_for_a_test)
715715
procedure some_test;
@@ -752,7 +752,7 @@ exec ut.run('test_package');
752752
```
753753
```
754754
Tests for a package
755-
Description of tesed behavior [.011 sec]
755+
Description of tested behavior [.011 sec]
756756
---SETUP_FOR_A_TEST invoked ---
757757
---ANOTHER_SETUP_FOR_A_TEST invoked ---
758758
---SOME_TEST invoked ---
@@ -790,7 +790,7 @@ As a rule, the `--%aftertest` gets executed even if the associated `--%beforeeac
790790
create or replace package test_package as
791791
--%suite(Tests for a package)
792792

793-
--%test(Description of tesed behavior)
793+
--%test(Description of tested behavior)
794794
--%aftertest(cleanup_for_a_test)
795795
--%aftertest(another_cleanup_for_a_test)
796796
procedure some_test;
@@ -833,7 +833,7 @@ exec ut.run('test_package');
833833
```
834834
```
835835
Tests for a package
836-
Description of tesed behavior [.01 sec]
836+
Description of tested behavior [.01 sec]
837837
---SOME_TEST invoked ---
838838
---CLEANUP_FOR_A_TEST invoked ---
839839
---ANOTHER_CLEANUP_FOR_A_TEST invoked ---

0 commit comments

Comments
 (0)