GameState ist jetzt RoundState
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@249 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
d0a7014577
commit
b3c903a2ad
7 changed files with 19 additions and 19 deletions
|
@ -7,15 +7,15 @@ import java.awt.Color;
|
|||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
/**
|
||||
* Test class for {@link GameState}
|
||||
* Test class for {@link RoundState}
|
||||
*/
|
||||
public class GameStateTest {
|
||||
private IGameState testGame;
|
||||
public class RoundStateTest {
|
||||
private IRoundState testGame;
|
||||
|
||||
/** */
|
||||
@Before
|
||||
public void createGame() {
|
||||
testGame = new GameState();
|
||||
testGame = new RoundState();
|
||||
}
|
||||
|
||||
/** */
|
Reference in a new issue