Assert object

Relevant for: API testing only

Description

Qualifies the preceding object.

Note: This object should be used only in the CodeCheckpointEvent event.

Back to top

Syntax

<object>.Assert.<supported operator method("<expected value>");

Back to top

Supported Methods

  • Equals

  • Greater

  • GreaterorEqual

  • Less

  • LessorEqual

  • NotEquals

Back to top

Example

args.Checkpoint.Assert.Equals(this.ConcatenateStringsActivity4.Prefix+this.ConcatenateStringsActivity4.Suffix,this.ConcatenateStringsActivity4.Result);

Back to top