lsbIsNotEqualTo
Short summary
This assertion method checks if the least significant bit of current value is not equal to the unexpected value
Parameters
| Name | Type | Comment | Kind |
|---|---|---|---|
| currentValue | BYTE | current value to check | input |
| unexpectedValue | BOOL | unexpected value of lsb | input |
| message | AssertMessage | message if the assertion is false | input |
Code
Declaration
METHOD lsbIsNotEqualTo
VAR_INPUT
(* current value to check *)
currentValue :BYTE;
(* unexpected value of lsb *)
unexpectedValue :BOOL;
(* message if the assertion is false *)
message :AssertMessage;
END_VAR
Implementation
IF (TO_BOOL(currentValue AND THIS^.LSB) = unexpectedValue) THEN
THIS^.assertionWasWrong(message, THIS^.getDebugInfo('lsbIsNotEqualTo'));
END_IF