Overview
Asserts the expected value is not equal to the actual value. If not, an error is thrown.void myScript.AssertNotEquals(expected: any, actual: any, message: string)
Arguments
any expected
The expected value.
any actual
The actual value.
string message
The message to display if the condition is false.
Example
Script.AssertNotEquals(1, myResult, "Result should not be 1");
Examples
Script.AssertNotEquals(1, myResult, "Result should not be 1");