Ejemplo n.º 1
0
 public void FromCoefficient_CoefficientLessThanOne_CreatesNegativePercent()
 {
     Assert.AreEqual(new Percent(-10), Percent.FromCoefficient(.9));
 }
Ejemplo n.º 2
0
 public void FromCoefficient_ConvertsCoefficientToPercentage()
 {
     Assert.AreEqual(new Percent(30), Percent.FromCoefficient(1.3));
 }