GetDeduction() 공개 메소드

public GetDeduction ( ) : double
리턴 double
예제 #1
0
 public void DeductionForAHalfExemptDonationUnder80GShouldbeZeroIfDonationIsZero()
 {
     DonationUnder80G donation = new HalfExemptDonation(0);
     Assert.AreEqual(0, donation.GetDeduction(), 0.001);
 }
예제 #2
0
 public void DeductionForAHalfExemptDonationUnder80GShouldbeHalfOfTheDonationMade()
 {
     DonationUnder80G donation = new HalfExemptDonation(50000);
     Assert.AreEqual(25000, donation.GetDeduction(), 0.001);
 }