justcheckers/test/game/InternationalGameTest.java

42 lines
1.6 KiB
Java
Raw Normal View History

2011-11-30 17:29:49 -05:00
/*****************************************************************************
InternationalGameTest.java -- Regression test of a game played according to
International 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 <http://www.gnu.org/licenses/>.
*****************************************************************************/
package org.justcheckers.test.game;
2011-11-30 17:29:49 -05:00
/**
* Regression test for a game of checkers played according to International
* rules.
* International rules are:
* - 10x10 board.
* - Pawns can move 1 space forward.
* - Kings can move 1 space forward. But can capture backwards.
* - The game ends when one player is eliminated or completely blocked.
*
* TestNG version: 5.10
*
* @author Dorian Pula
*
*/
public class InternationalGameTest {
//TODO: Populate with test cases.
}