using System; using System.Collections.Generic; using System.Linq; using System.Text; using NUnit.Framework; namespace NUnitTest1 { [TestFixture] public class ArithmeticTest { [Test] public void TestTrue() { Arithmetic ournumber1 = new Arithmetic(); ournumber1.StartWith(765m); Arithmetic ournumber2 = new Arithmetic(); ournumber2.StartWith(153m); ournumber2.Multiply(5); Assert.AreEqual(ournumber1.Total, ournumber2.Total); } // This test fail for example, replace result or delete this test to see all tests pass //[Test] //public void TestFault() //{ // Assert.IsTrue(false); //} } }