shouldNotBeEqualToIgnoringCase method

void shouldNotBeEqualToIgnoringCase(
  1. String expected
)

Asserts that the value is not equal to expected ignoring case sensitivity.

Implementation

void shouldNotBeEqualToIgnoringCase(String expected) {
  expect(this, isNot(equalsIgnoringCase(expected)));
}