eg.bowling.fixtures.FinalScore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
// Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
// Released under the terms of the GNU General Public License version 2 or later.
package eg.bowling.fixtures;
import eg.bowling.Bowling;
import eg.bowling.BowlingGame;
import fitnesse.fixtures.TableFixture;
public class FinalScore extends TableFixture {
private Bowling game;
@Override
protected void doStaticTable(int rows) {
game = new BowlingGame();
doRolls();
doScore();
}
private void doRolls() {
for (int i = 0; i < 21; i++) {
if (!blank(0, i)) {
int pins = getInt(0, i);
game.roll(pins);
}
}
}
private void doScore() {
int expected = getInt(0, 21);
int actual = game.score(10);
if (actual == expected)
right(0, 21);
else
wrong(0, 21, "" + actual);
}
}