Tests und imlementierung für Wert von Sets bestimmen, fertig und getestet

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@242 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Ida Massow 2011-05-16 20:54:37 +02:00
parent 9ad7f0822e
commit f7aace7234
5 changed files with 147 additions and 58 deletions

View file

@ -91,6 +91,17 @@ public class RoundControlTest {
view.getTablePanel().rightPlayerName = null;
view.displayStartTurnPanel = false;
}
/** */
@Test
public void playerCameOutCorrectly(){
MockTable oldTable = new MockTable();
MockTable newTable = new MockTable();
Stone blueTen = new Stone(10, BLUE);
Stone redTen = new Stone(10, RED);
Stone blackTen = new Stone(10, BLACK);
}
/** */
@Test