public void TestAPlusB() { Assert.AreEqual(3, MyMath.Add(1, 2)); }
public void TestAMultipliedByB() { Assert.AreEqual(15, MyMath.Multiply(3, 5)); }