8910111213141516
public class FinalScore extends TableFixture { private Bowling game; protected void doStaticTable(int rows) { game = new BowlingGame(); doRolls(); doScore(); }
10111213141516
private Bowling game; public String pins; public GameTiming() { super(); game = new BowlingGame(); }
131415161718192021
public static final int SPARE = -2; public static final int BLANK = -3; public static final int ERROR = -4; protected void doStaticTable(int rows) { game = new BowlingGame(); doRolls(); doScores(); }
public class SimpleScoreGame extends TableFixture { private Bowling game; protected void doStaticTable(int rows) { game = new BowlingGame(); doRolls(); doScores(); }