-Assert.AreEqueal(30, result); -Assert.IsTrue(result);
The constraint-based assert model uses a single method of the assert class for all assertions. The logic necessary to carry out each assertion is embedded in the constraint object passed as the second parameter to that method. -Assert.That(30, IsEqual(result)); -Assert.That(Result, IsFalse);
An onject under test may have dependencies on other objects. Mocking is replacing the actual dependency, with a test time only version that enables easier isolation of code that we want to test. Like MOQ, Nmock3, FakeITEasy, Nsubstitute