public void From_ValueAndUnit_ReturnsQuantityWithSameValueAndUnit() { var quantity00 = AreaMomentOfInertia.From(1, AreaMomentOfInertiaUnit.CentimeterToTheFourth); AssertEx.EqualTolerance(1, quantity00.CentimetersToTheFourth, CentimetersToTheFourthTolerance); Assert.Equal(AreaMomentOfInertiaUnit.CentimeterToTheFourth, quantity00.Unit); var quantity01 = AreaMomentOfInertia.From(1, AreaMomentOfInertiaUnit.DecimeterToTheFourth); AssertEx.EqualTolerance(1, quantity01.DecimetersToTheFourth, DecimetersToTheFourthTolerance); Assert.Equal(AreaMomentOfInertiaUnit.DecimeterToTheFourth, quantity01.Unit); var quantity02 = AreaMomentOfInertia.From(1, AreaMomentOfInertiaUnit.FootToTheFourth); AssertEx.EqualTolerance(1, quantity02.FeetToTheFourth, FeetToTheFourthTolerance); Assert.Equal(AreaMomentOfInertiaUnit.FootToTheFourth, quantity02.Unit); var quantity03 = AreaMomentOfInertia.From(1, AreaMomentOfInertiaUnit.InchToTheFourth); AssertEx.EqualTolerance(1, quantity03.InchesToTheFourth, InchesToTheFourthTolerance); Assert.Equal(AreaMomentOfInertiaUnit.InchToTheFourth, quantity03.Unit); var quantity04 = AreaMomentOfInertia.From(1, AreaMomentOfInertiaUnit.MeterToTheFourth); AssertEx.EqualTolerance(1, quantity04.MetersToTheFourth, MetersToTheFourthTolerance); Assert.Equal(AreaMomentOfInertiaUnit.MeterToTheFourth, quantity04.Unit); var quantity05 = AreaMomentOfInertia.From(1, AreaMomentOfInertiaUnit.MillimeterToTheFourth); AssertEx.EqualTolerance(1, quantity05.MillimetersToTheFourth, MillimetersToTheFourthTolerance); Assert.Equal(AreaMomentOfInertiaUnit.MillimeterToTheFourth, quantity05.Unit); }
public void FromValueAndUnit() { AssertEx.EqualTolerance(1, AreaMomentOfInertia.From(1, AreaMomentOfInertiaUnit.CentimeterToTheFourth).CentimetersToTheFourth, CentimetersToTheFourthTolerance); AssertEx.EqualTolerance(1, AreaMomentOfInertia.From(1, AreaMomentOfInertiaUnit.DecimeterToTheFourth).DecimetersToTheFourth, DecimetersToTheFourthTolerance); AssertEx.EqualTolerance(1, AreaMomentOfInertia.From(1, AreaMomentOfInertiaUnit.FootToTheFourth).FeetToTheFourth, FeetToTheFourthTolerance); AssertEx.EqualTolerance(1, AreaMomentOfInertia.From(1, AreaMomentOfInertiaUnit.InchToTheFourth).InchesToTheFourth, InchesToTheFourthTolerance); AssertEx.EqualTolerance(1, AreaMomentOfInertia.From(1, AreaMomentOfInertiaUnit.MeterToTheFourth).MetersToTheFourth, MetersToTheFourthTolerance); AssertEx.EqualTolerance(1, AreaMomentOfInertia.From(1, AreaMomentOfInertiaUnit.MillimeterToTheFourth).MillimetersToTheFourth, MillimetersToTheFourthTolerance); }