fitbook.CalculateDiscounts2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitlibrary Show documentation
Show all versions of fitlibrary Show documentation
FitLibrary provides general-purpose fixtures (and runners) for storytests with Fit and FitNesse.
The newest version!
/*
* @author Rick Mugridge 12/10/2004
* Copyright (c) 2004 Rick Mugridge, University of Auckland, NZ
* Released under the terms of the GNU General Public License version 2 or later.
*/
package fitbook;
/**
*
*/
public class CalculateDiscounts2 extends fitlibrary.CalculateFixture { //COPY:ALL
private DiscountApplication app; //COPY:ALL
private String futureValue; //COPY:ALL
//COPY:ALL
public CalculateDiscounts2(DiscountApplication app, String futureValue) { //COPY:ALL
this.app = app; //COPY:ALL
this.futureValue = futureValue; //COPY:ALL
} //COPY:ALL
public double discountOwingPurchase(double owing, double purchase) { //COPY:ALL
return app.discount(futureValue,owing,purchase); //COPY:ALL
} //COPY:ALL
} //COPY:ALL