Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/userguide/annotations.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ end;
| `--%suite(<description>)` | Package | Mandatory. Marks package as a test suite. Optional suite description can be provided (see `displayname`). |
| `--%suitepath(<path>)` | Package | Similar to java package. The annotation allows logical grouping of suites into hierarchies. |
| `--%displayname(<description>)` | Package/procedure | Human-readable and meaningful description of a context/suite/test. Overrides the `<description>` provided with `suite`/`test`/`context` annotation. This annotation is redundant and might be removed in future releases. |
| `--%test(<description>)` | Procedure | Denotes that the annotated procedure is a unit test procedure. Optional test description can by provided (see `displayname`). |
| `--%test(<description>)` | Procedure | Denotes that the annotated procedure is a unit test procedure. Optional test description can be provided (see `displayname`). |
| `--%throws(<exception>[,...])`| Procedure | Denotes that the annotated test procedure must throw one of the exceptions provided. Supported forms of exceptions are: numeric literals, numeric constant names, exception constant names, predefined Oracle exception names. |
| `--%beforeall` | Procedure | Denotes that the annotated procedure should be executed once before all elements of the suite. |
| `--%beforeall([[<owner>.]<package>.]<procedure>[,...])` | Package | Denotes that the mentioned procedure(s) should be executed once before all elements of the suite. |
Expand Down
4 changes: 2 additions & 2 deletions docs/userguide/expectations.md
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ SUCCESS

## to_be_within of

Determines wheter expected value is within range (tolerance) from another value.
Determines whether expected value is within range (tolerance) from another value.

The logical formual used for calcuating the matcher is:
```
Expand Down Expand Up @@ -1177,7 +1177,7 @@ Failures:

## to_be_within_pct of

Determines wheter actual value is within percentage range of expected value.
Determines whether actual value is within percentage range of expected value.
The matcher only works with `number` data-type.

The percentage deviation (distance) must be expressed as a non-negative number.
Expand Down