We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#IsNot
Inverts a matcher:
[Test] public void IsNot() { var isNotCat = new IsNot(new IsEqual("cat")); Assert.That("mat", isNotCat); // or alternatively Assert.That(1, Is.Not(2)); }