I64BitTimeAssertions
Short summary
This interface provides assert statements for 64 bit LTIME
| Access | Abstract | Final | Extends | Implements |
|---|---|---|---|---|
| - | No | No | __SYSTEM.IQueryInterface | - |
UML Diagram
Methods
timeHasExpired
- Parameters:
timestamp(LTIME): start time you get it withLTIME()expiringTime(LTIME): timeout likeLTIME#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(LTIME): start time you get it withLTIME()expiringTime(LTIME): timeout likeLTIME#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(LTIME): current value to checkexpectedValue(LTIME): 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(LTIME): current value to checklessValue(LTIME): 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(LTIME): lower limit for the current valuecurrentValue(LTIME): current value to checkupperLimit(LTIME): 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(LTIME): current value to checkgreaterValue(LTIME): 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(LTIME): current value to checkmaximumValue(LTIME): 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(LTIME): current value to checkminimumValue(LTIME): 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(LTIME): current value to checkunexpectedValue(LTIME): 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 I64BitTimeAssertions EXTENDS __SYSTEM.IQueryInterface