Beispiel #1
0
 public void ApplyTax_To0_Returns0()
 {
     TaxHelper.ApplyTax(0).Should().Be(0);
 }
Beispiel #2
0
 public void ApplyTax_IncrementsValue()
 {
     TaxHelper.ApplyTax(100).Should().Be(105);
 }