예제 #1
0
파일: VolumeTest.cs 프로젝트: rmc00/gsf
 public void ToCubicFeetTest()
 {
     Volume target = new Volume(10F);
     double expected = 353.14666721488589;
     double actual;
     actual = target.ToCubicFeet();
     Assert.AreEqual(expected, actual);
 }