AssertNotEqualsAsync
Description: the method performs a check between the actual and expected values, in case of a match, the check will be considered a failure
Syntax: AssertNotEqualsAsync(dynamic expected, dynamic actual)
Return value: bool (true or false)
Example:
string expected = "abc";
string actual = "xyz";
bool result = await tester.AssertNotEqualsAsync(expected, actual);
Created with the Personal Edition of HelpNDoc: Free help authoring environment