![JAR search and dependency download from the Maven repository](/logo.png)
fitbook.Discount 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 6/12/2003
*
* Copyright (c) 2003 Rick Mugridge, University of Auckland, NZ
* Released under the terms of the GNU General Public License version 2 or later.
*
*/
package fitbook;
public class Discount {
public double getDiscount(double amount) {
if (amount < 0)
throw new RuntimeException("Can't be a negative amount");
if (amount < 1000)
return 0;
return amount*0.05;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy