Skip to main content

valueIsNotEqualTo

Short summary

This assertion method checks if the current value is not equal to the unexpected value

Parameters

NameTypeCommentKind
currentValueBYTEcurrent value to checkinput
unexpectedValueBYTEunexpected value to compareinput
messageAssertMessagemessage if the assertion is falseinput

Code

Declaration

METHOD valueIsNotEqualTo
VAR_INPUT
(* current value to check *)
currentValue :BYTE;
(* unexpected value to compare *)
unexpectedValue :BYTE;
(* message if the assertion is false *)
message :AssertMessage;
END_VAR

Implementation

IF (currentValue = unexpectedValue) THEN
THIS^.assertionWasWrong(message, THIS^.getDebugInfo('valueIsNotEqualTo'));
END_IF