IXWordAssertions
Short summary
This interface provides assert statements for register length words
| Access | Abstract | Final | Extends | Implements |
|---|---|---|---|---|
| - | No | No | __SYSTEM.IQueryInterface | - |
UML Diagram
Methods
andMaskIsEqualTo
- Parameters:
currentValue(__XWORD): current value to checkmask(__XWORD): 2nd operand for bitwise operationexpectedValue(__XWORD): expected result after maskingmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the result current value bitwise AND mask is equal to the expected value…
andMaskIsNotEqualTo
- Parameters:
currentValue(__XWORD): current value to checkmask(__XWORD): 2nd operand for bitwise operationunexpectedValue(__XWORD): unexpected result after maskingmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the result current value bitwise AND mask…
bitXIsEqualTo
- Parameters:
currentValue(__XWORD): current value to checknumber(BitNumberXWord): number of bit to checkexpectedValue(BOOL): expected value of bitmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the selected bit of current value…
bitXIsNotEqualTo
- Parameters:
currentValue(__XWORD): current value to checknumber(BitNumberXWord): number of bit to checkunexpectedValue(BOOL): unexpected value of bitmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the selected bit of current value…
bitXIsSet
- Parameters:
currentValue(__XWORD): current value to checknumber(BitNumberXWord): number of bit to checkmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the selected bit of current value…
bitXIsUnset
- Parameters:
currentValue(__XWORD): current value to checknumber(BitNumberXWord): number of bit to checkmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the selected bit of current value…
lsbIsEqualTo
- Parameters:
currentValue(__XWORD): current value to checkexpectedValue(BOOL): expected value of lsbmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the least significant bit of current value…
lsbIsNotEqualTo
- Parameters:
currentValue(__XWORD): current value to checkunexpectedValue(BOOL): unexpected value of lsbmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the least significant bit of current value…
lsbIsSet
- Parameters:
currentValue(__XWORD): current value to checkmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the least significant bit of current value…
lsbIsUnset
- Parameters:
currentValue(__XWORD): current value to checkmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the least significant bit of current value…
msbIsEqualTo
- Parameters:
currentValue(__XWORD): current value to checkexpectedValue(BOOL): expected value of msbmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the most significant bit of current value…
msbIsNotEqualTo
- Parameters:
currentValue(__XWORD): current value to checkunexpectedValue(BOOL): unexpected value of msbmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the most significant bit of current value…
msbIsSet
- Parameters:
currentValue(__XWORD): current value to checkmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the most significant bit of current value…
msbIsUnset
- Parameters:
currentValue(__XWORD): current value to checkmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the most significant bit of current value…
orMaskIsEqualTo
- Parameters:
currentValue(__XWORD): current value to checkmask(__XWORD): 2nd operand for bitwise operationexpectedValue(__XWORD): expected result after maskingmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the result current value bitwise OR mask is equal to the expected value…
orMaskIsNotEqualTo
- Parameters:
currentValue(__XWORD): current value to checkmask(__XWORD): 2nd operand for bitwise operationunexpectedValue(__XWORD): unexpected result after maskingmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the result current value bitwise OR mask …
valueIsEqualTo
- Parameters:
currentValue(__XWORD): current value to checkexpectedValue(__XWORD): 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(__XWORD): current value to checklessValue(__XWORD): 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(__XWORD): lower limit for the current valuecurrentValue(__XWORD): current value to checkupperLimit(__XWORD): 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(__XWORD): current value to checkgreaterValue(__XWORD): 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(__XWORD): current value to checkmaximumValue(__XWORD): 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(__XWORD): current value to checkminimumValue(__XWORD): 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(__XWORD): current value to checkunexpectedValue(__XWORD): 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…
xorMaskIsEqualTo
- Parameters:
currentValue(__XWORD): current value to checkmask(__XWORD): 2nd operand for bitwise operationexpectedValue(__XWORD): expected result after maskingmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the result current value bitwise XOR mask is equal to the expected value…
xorMaskIsNotEqualTo
- Parameters:
currentValue(__XWORD): current value to checkmask(__XWORD): 2nd operand for bitwise operationunexpectedValue(__XWORD): unexpected result after maskingmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if the result current value bitwise XOR mask …
Code
Declaration
INTERFACE IXWordAssertions EXTENDS __SYSTEM.IQueryInterface