blob: 8887e78148eeff40ace077489ec5f2c50364d239 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package jrummikub.model;
import static org.junit.Assert.*;
import java.awt.Color;
import org.junit.Before;
import org.junit.Test;
public class GameStateTest {
private GameState testGame;
@Before
public void createGame() {
testGame = new GameState();
}
@Test
public void nextActiveTest() {
// All there?
assertEquals(4, testGame.players.size());
assertSame(Color.red, testGame.activePlayer().getColor());
testGame.nextPlayer();
assertSame(Color.yellow, testGame.activePlayer().getColor());
testGame.nextPlayer();
testGame.nextPlayer();
testGame.nextPlayer();
assertSame(Color.red, testGame.activePlayer().getColor());
}
}
|