assertNotEquals<T> function
Asserts that the difference between the actual and the illegal
is not within an absoluteTolerance, with an optional message.
Implementation
Unit assertNotEquals<T>(
T illegal,
T actual, {
String? message,
Double absoluteTolerance = 0,
}) {
return asserter.assertNotEquals(message, illegal, actual);
}