Skip to content
Snippets Groups Projects
AuctionManagerFixture.java 367 B
Newer Older
package fitNesseFixture;
import project.AuctionManager;
public class AuctionManagerFixture {
	private AuctionManager ab;
cristiano's avatar
cristiano committed
	private int value;
cristiano's avatar
cristiano committed
	public boolean placeBid() {
		ab = AuctionManager.getInstance();
		return ab.placeBid(value);
	}
	public void setValue(int value) {
		this.value = value;
	}

	public void setAb(AuctionManager ab) {