IBinaryAssertions
Short summary
This interface provides assert statements for binaries e.g. structures, arrays etc...
| Access | Abstract | Final | Extends | Implements |
|---|---|---|---|---|
| - | No | No | __SYSTEM.IQueryInterface | - |
UML Diagram
Methods
isEqualTo
- Parameters:
data(ANY): current binary datadataToCompare(ANY): binary data with the expected valuesmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if all bytes of memory of…
isGreaterThan
- Parameters:
data(ANY): current binary datadataToCompare(ANY): binary data with smaller valuesmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks the bytes of memory of…
isLessThan
- Parameters:
data(ANY): current binary datadataToCompare(ANY): binary data with greater valuesmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks the bytes of memory of…
isNotEqualTo
- Parameters:
data(ANY): current binary datadataToCompare(ANY): binary data with the unexpected valuesmessage(AssertMessage): message if the assertion is false
- Return type:
VOID
This assertion method checks if minimal one byte of memory of…
Code
Declaration
INTERFACE IBinaryAssertions EXTENDS __SYSTEM.IQueryInterface