All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fitlibraryGeneric.eg.rentEz.ClientTransaction Maven / Gradle / Ivy

Go to download

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