ILintAssertions
Short summary
This interface provides assert statements for long integers (LINT)
| Access | Abstract | Final | Extends | Implements |
|---|---|---|---|---|
| - | No | No | __SYSTEM.IQueryInterface | - |
UML Diagram
Methods
valueIsEqualTo
- Parameters:
currentValue(LINT): current value to checkexpectedValue(LINT): 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…
valueIsEven
- Parameters:
currentValue(LINT): current value to checkmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the current value is even…
valueIsGreaterThan
- Parameters:
currentValue(LINT): current value to checklessValue(LINT): less than lower limitmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the current value is greater than the less value…
valueIsInRangeOf
- Parameters:
lowerLimit(LINT): lower limit for the current valuecurrentValue(LINT): current value to checkupperLimit(LINT): upper limit for the current valuemessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the current value is inside a limit…
valueIsLessThan
- Parameters:
currentValue(LINT): current value to checkgreaterValue(LINT): greater than upper limitmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the current value is less than the greater value…
valueIsMax
- Parameters:
currentValue(LINT): current value to checkmaximumValue(LINT): upper limit for the current valuemessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the current value is less than or equal to the maximum value…
valueIsMin
- Parameters:
currentValue(LINT): current value to checkminimumValue(LINT): lower limit for the current valuemessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the current value is greater than or equal to the minimum value…
valueIsNegative
- Parameters:
currentValue(LINT): current value to checkmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the current value is negative…
valueIsNotEqualTo
- Parameters:
currentValue(LINT): current value to checkunexpectedValue(LINT): 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…
valueIsOdd
- Parameters:
currentValue(LINT): current value to checkmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the current value is odd…
valueIsPositive
- Parameters:
currentValue(LINT): current value to checkmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the current value is positve…
Code
Declaration
INTERFACE ILintAssertions EXTENDS __SYSTEM.IQueryInterface