Exemplo n.º 1
0
        public void PathFromUnitTest()
        {
            double expected = 63360;

            Mile mil = new Mile();
            Inch i   = new Inch();


            UnitPathStack actual = i.PathFromUnit(mil);


            Assert.AreEqual(expected, actual.ConversionFactor);
        }