public void TestPoundsToOunces3() { var convert = new ConvertWeight(); var expected = 1642.08m; var actual = convert.PoundsToOunces(102.63m); Assert.AreEqual(expected, actual); }
public void TestPoundsToOunces2() { var convert = new ConvertWeight(); var expected = 88m; var actual = convert.PoundsToOunces(5.5m); Assert.AreEqual(expected, actual); }