assertNotEquals<T> function

void assertNotEquals<T>(
  1. T illegal,
  2. T actual, {
  3. String? message,
  4. Double absoluteTolerance = 0,
})

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);
}