/***************************************************************************** AmericanGameTest.java -- Regression test of a game played according to American rules. ***************************************************************************** ***************************************************************************** This file is part of justCheckers. justCheckers is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. justCheckers is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with justCheckers. If not, see . *****************************************************************************/ package org.justcheckers.test.game; /** * Regression test for a game of checkers played according to American rules. * American rules are: * - 8x8 board. * - Pawns can only move 1 space forward. * - Kings can move 1 space forward or backwards. * - The game ends when one player is eliminated or completely blocked. * * TestNG version: 5.10 * * @author Dorian Pula * */ public class AmericanGameTest { //TODO: Populate with test cases. }