docs/articles/nunit/writing-tests/assertions/assertion-models/classic.md
The classic Assert model uses a separate method to express each individual assertion of which it is capable.
Here's a simple assert using the classic model:
StringAssert.AreEqualIgnoringCase("Hello", myString);
The Assert class provides the most common assertions in NUnit:
Additional assertions are provided by the following classes, which are also in the NUnit.Framework.Legacy namespace: