isEqualInOrderTo
Short summary
This assertion method checks if object
is at the same position in the sequence as objectToCompare
Parameters
| Name | Type | Comment | Kind |
|---|---|---|---|
| object | CNM_AbstractObject.IObject | object which should be tested | input |
| objectToCompare | CNM_AbstractObject.IObject | comparative object | input |
| message | AssertMessage | message if the assertion is false | input |
Code
Declaration
METHOD isEqualInOrderTo
VAR_INPUT
(* object which should be tested *)
object :CNM_AbstractObject.IObject;
(* comparative object *)
objectToCompare :CNM_AbstractObject.IObject;
(* message if the assertion is false *)
message :AssertMessage;
END_VAR