A class that can be used to analyze correctness of the program behavior. More...
Static Public Member Functions | |
| static void | NotNull (Object object, String message) |
| Throw assertion error if given object is null. More... | |
| static void | Throw (String message) |
| Assert with a message. More... | |
| static void | True (boolean condition, String message) |
| Throw assertion error if given condition is false. More... | |
A class that can be used to analyze correctness of the program behavior.
|
static |
Throw assertion error if given object is null.
| object | Object to check. |
| message | Message to throw if given object is null. |
|
static |
Assert with a message.
| message | Message to throw. |
|
static |
Throw assertion error if given condition is false.
| condition | Condition to evaluate. |
| message | Message to throw in condition is not valid. |