I32BitTimeAssertions
Short summary
This interface provides assert statements for 32 bit TIME
| Access | Abstract | Final | Extends | Implements |
|---|---|---|---|---|
| - | No | No | __SYSTEM.IQueryInterface | - |
UML Diagram
Methods
timeHasExpired
- Parameters:
timestamp(TIME): start time you get it withTIME()expiringTime(TIME): timeout liket#300msmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks whether time has elapsed since the timestamp time…
timeHasNotExpired
- Parameters:
timestamp(TIME): start time you get it withTIME()expiringTime(TIME): timeout liket#300msmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks that the time since the timestamp time has not yet elapsed…
valueIsEqualTo
- Parameters:
currentValue(TIME): current value to checkexpectedValue(TIME): 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…
valueIsGreaterThan
- Parameters:
currentValue(TIME): current value to checklessValue(TIME): 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(TIME): lower limit for the current valuecurrentValue(TIME): current value to checkupperLimit(TIME): 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(TIME): current value to checkgreaterValue(TIME): 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(TIME): current value to checkmaximumValue(TIME): 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(TIME): current value to checkminimumValue(TIME): 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…
valueIsNotEqualTo
- Parameters:
currentValue(TIME): current value to checkunexpectedValue(TIME): 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…
Code
Declaration
INTERFACE I32BitTimeAssertions EXTENDS __SYSTEM.IQueryInterface