justcheckers/test/game/GameLogicTest.java

38 lines
1.5 KiB
Java

/*****************************************************************************
GameLogicTest.java -- Unit tests related to the game engine.
*****************************************************************************
*****************************************************************************
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;
/**
* Test the game engine logic. Tests if the game engine can manipulate the
* state of a game and its board, in accordance to the rules of the game. The
* set of rule change from variant to variant. These tests should check basic
* correctness of the game engine.
*
* TestNG version: 5.10
*
* @author Dorian Pula
*
*/
public class GameLogicTest {
//TODO: Populate with test cases.
}