public void ToCubicFeetTest() { Volume target = new Volume(10F); double expected = 353.14666721488589; double actual; actual = target.ToCubicFeet(); Assert.AreEqual(expected, actual); }