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
currentValueLDATEcurrent value to checkinput
maximumValueLDATEupper limit for the current valueinput
messageAssertMessagemessage if the assertion is falseinput

Code

Declaration

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

Implementation

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