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

Skip to content

Commit 58f38be

Browse files
committed
fixed annotations.md guide
1 parent 6449754 commit 58f38be

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/userguide/annotations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ end test_pkg;
5656
| `%suitepath(<path>)` | Package | Similar to java package. The annotation allows logical grouping of suites into hierarcies. |
5757
| `%displayname(<description>)` | Package/procedure | Human-familiar describtion of the suite/test. `%displayname(Name of the suite/test)` |
5858
| `%test` | Procedure | Denotes that a method is a test method. |
59-
| `%beforeall` | Procedure | Denotes that the annotated procedure should be executed before all `%test` methods in the current suite. |
60-
| `%afterall` | Procedure | Denotes that the annotated procedure should be executed after all `%test` methods in the current suite. |
59+
| `%beforeall` | Procedure | Denotes that the annotated procedure should be executed once before all elements of the current suite. |
60+
| `%afterall` | Procedure | Denotes that the annotated procedure should be executed once after all elements of the current suite. |
6161
| `%beforeeach` | Procedure | Denotes that the annotated procedure should be executed before each `%test` method in the current suite. |
6262
| `%aftereach` | Procedure | Denotes that the annotated procedure should be executed after each `%test` method in the current suite. |
6363
| `%beforetest(<procedure_name>)` | Procedure | Denotes that mentioned procedure should be executed before the annotated `%test` procedure. |

0 commit comments

Comments
 (0)