Added startRound test to RoundControlTest

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@122 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-05-04 21:37:30 +02:00
parent 4ae29c76c2
commit d559e17077
2 changed files with 36 additions and 14 deletions

View file

@ -12,6 +12,9 @@ import jrummikub.util.IEvent2;
public class MockTablePanel implements ITablePanel {
public MockStoneCollectionPanel stoneCollectionPanel = new MockStoneCollectionPanel();
public String leftPlayerName;
public String topPlayerName;
public String rightPlayerName;
@Override
public IEvent2<Stone, Boolean> getStoneClickEvent() {
@ -39,20 +42,17 @@ public class MockTablePanel implements ITablePanel {
@Override
public void setLeftPlayerName(String playerName) {
// TODO Auto-generated method stub
leftPlayerName = playerName;
}
@Override
public void setTopPlayerName(String playerName) {
// TODO Auto-generated method stub
topPlayerName = playerName;
}
@Override
public void setRightPlayerName(String playerName) {
// TODO Auto-generated method stub
rightPlayerName = playerName;
}
@Override