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

Code

Declaration

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