Skip to main content

valueIsMax

Short summary

This assertion method checks if the current value is less than or equal to the maximum value

Parameters

NameTypeCommentKind
currentValue__XINTcurrent value to checkinput
maximumValue__XINTupper limit for the current valueinput
messageAssertMessagemessage if the assertion is falseinput

Code

Declaration

METHOD valueIsMax
VAR_INPUT
(* current value to check *)
currentValue :__XINT;
(* upper limit for the current value *)
maximumValue :__XINT;
(* message if the assertion is false *)
message :AssertMessage;
END_VAR

Implementation

IF (currentValue > maximumValue) THEN
THIS^.assertionWasWrong(message, THIS^.getDebugInfo('valueIsMax'));
END_IF