Skip to main content

VerifyAreEqual

Verifies if two expressions are equal.

Definition

Namespace: UiPath.Testing.API

Assembly: UiPath.Testing.Activities.Api (in UiPath.Testing.Activities.Api.dll)

VerifyAreEqual(object, object, string)

bool VerifyAreEqual(
object firstExpression,
object secondExpression,
string outputMessageFormat = null
)

firstExpression Object : The first expression in the verification process.

secondExpression Object : The second expression in the verification process.

outputMessageFormat String : The format of the output message. The supported arguments are:

  • {LeftExpression}
  • {LeftExpressionText}
  • {RightExpression}
  • {RightExpressionText}
  • {Result}
  • {Operator}

For instance, you can use the following output message format:

{LeftExpressionText}
(with value {LeftExpression}) {Operator} {RightExpressionText} (with value {RightExpression})
has result {Result}.

This message format indicates a comparison between two values or variables (LeftExpression and RightExpression), using a certain operator. The {Result} represents the outcome of this comparison.

Return value

Boolean

It is True if the expressions are equal, and False if the verifications are not equal.