
fitlibraryGeneric.eg.rentEz.ClientTransaction 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!
package fitlibraryGeneric.eg.rentEz;
import java.util.List;
public class ClientTransaction {
private Client client;
public ClientTransaction(Client client) {
this.client = client;
}
public boolean rent(List rentals) {
client.addRentals(rentals);
return true;
}
public void payWithCash(@SuppressWarnings("unused") double cash) {
//
}
public boolean complete() {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy