IBooleanAssertion
Short summary
This interface provides assert statements for booleans
| Access | Abstract | Final | Extends | Implements |
|---|---|---|---|---|
| - | No | No | __SYSTEM.IQueryInterface | - |
UML Diagram
Methods
valueIsEqualTo
- Parameters:
currentValue(BOOL): current value to checkexpectedValue(BOOL): expected value to comparemessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the current value is equal to the expected value…
valueIsFalse
- Parameters:
currentValue(BOOL): current value to checkmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the current value is FALSE…
valueIsNotEqualTo
- Parameters:
currentValue(BOOL): current value to checkunexpectedValue(BOOL): unexpected value to comparemessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the current value is not equal to the unexpected value…
valueIsTrue
- Parameters:
currentValue(BOOL): current value to checkmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the current value is TRUE…
Code
Declaration
INTERFACE IBooleanAssertion EXTENDS __SYSTEM.IQueryInterface