public void TestDivideMethod() { //arranges the method var calc = new Calc(); //shows the action var result = calc.Div(9, 3); //asserts whether the correct answer is the result Assert.AreEqual(3, result); }