Skip to main content

valueIsLessThan

Short summary

This assertion method checks if the current value is less than the greater value

Parameters

NameTypeCommentKind
currentValueLDATEcurrent value to checkinput
greaterValueLDATEgreater than upper limitinput
messageAssertMessagemessage if the assertion is falseinput

Code

Declaration

METHOD valueIsLessThan
VAR_INPUT
(* current value to check *)
currentValue :LDATE;
(* greater than upper limit *)
greaterValue :LDATE;
(* message if the assertion is false *)
message :AssertMessage;
END_VAR