Collection selecting tests and mock views
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@113 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
ac08bc112f
commit
20b7f250da
6 changed files with 241 additions and 16 deletions
43
test/jrummikub/view/MockHandPanel.java
Normal file
43
test/jrummikub/view/MockHandPanel.java
Normal file
|
@ -0,0 +1,43 @@
|
|||
package jrummikub.view;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import jrummikub.model.Position;
|
||||
import jrummikub.model.Stone;
|
||||
import jrummikub.util.Event2;
|
||||
import jrummikub.util.IEvent1;
|
||||
import jrummikub.util.IEvent2;
|
||||
|
||||
public class MockHandPanel implements IHandPanel {
|
||||
public Event2<Stone, Boolean> stoneClickEvent = new Event2<Stone, Boolean>();
|
||||
|
||||
@Override
|
||||
public IEvent2<Stone, Boolean> getStoneClickEvent() {
|
||||
return stoneClickEvent;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IEvent2<Stone, Boolean> getRangeClickEvent() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IEvent2<Stone, Boolean> getSetClickEvent() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IEvent1<Position> getClickEvent() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setStones(Map<Stone, Position> stones) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
}
|
|
@ -5,10 +5,12 @@ import jrummikub.util.IEvent;
|
|||
|
||||
public class MockPlayerPanel implements IPlayerPanel {
|
||||
public Event endTurnEvent = new Event();
|
||||
public MockHandPanel handPanel = new MockHandPanel();
|
||||
|
||||
@Override
|
||||
public IHandPanel getHandPanel() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
return handPanel;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
28
test/jrummikub/view/MockStoneCollectionPanel.java
Normal file
28
test/jrummikub/view/MockStoneCollectionPanel.java
Normal file
|
@ -0,0 +1,28 @@
|
|||
package jrummikub.view;
|
||||
|
||||
import jrummikub.model.Stone;
|
||||
import jrummikub.util.Event2;
|
||||
import jrummikub.util.IEvent2;
|
||||
|
||||
public class MockStoneCollectionPanel implements IStoneCollectionPanel {
|
||||
|
||||
public Event2<Stone,Boolean> stoneClickEvent = new Event2<Stone, Boolean>();
|
||||
|
||||
@Override
|
||||
public IEvent2<Stone, Boolean> getStoneClickEvent() {
|
||||
return stoneClickEvent;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IEvent2<Stone, Boolean> getRangeClickEvent() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IEvent2<Stone, Boolean> getSetClickEvent() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
82
test/jrummikub/view/MockTablePanel.java
Normal file
82
test/jrummikub/view/MockTablePanel.java
Normal file
|
@ -0,0 +1,82 @@
|
|||
package jrummikub.view;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import jrummikub.model.Position;
|
||||
import jrummikub.model.Stone;
|
||||
import jrummikub.model.StoneSet;
|
||||
import jrummikub.util.Event1;
|
||||
import jrummikub.util.IEvent1;
|
||||
import jrummikub.util.IEvent2;
|
||||
|
||||
public class MockTablePanel implements ITablePanel {
|
||||
|
||||
public MockStoneCollectionPanel stoneCollectionPanel = new MockStoneCollectionPanel();
|
||||
|
||||
@Override
|
||||
public IEvent2<Stone, Boolean> getStoneClickEvent() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IEvent2<Stone, Boolean> getRangeClickEvent() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IEvent2<Stone, Boolean> getSetClickEvent() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IEvent1<Position> getClickEvent() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setLeftPlayerName(String playerName) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setTopPlayerName(String playerName) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setRightPlayerName(String playerName) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setStoneSets(Map<StoneSet, Position> stoneSets) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public IStoneCollectionPanel getStoneCollectionPanel() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Event1<StoneSet> getLeftConnectorClickEvent() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Event1<StoneSet> getRightConnectorClickEvent() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
|
@ -1,4 +1,5 @@
|
|||
package jrummikub.view;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import jrummikub.model.Stone;
|
||||
|
@ -6,6 +7,9 @@ import jrummikub.util.IEvent;
|
|||
|
||||
public class MockView implements IView {
|
||||
public MockPlayerPanel playerPanel = new MockPlayerPanel();
|
||||
public MockTablePanel tablePanel = new MockTablePanel();
|
||||
|
||||
public Collection<Stone> selectedStones;
|
||||
|
||||
@Override
|
||||
public ITablePanel getTablePanel() {
|
||||
|
@ -26,8 +30,7 @@ public class MockView implements IView {
|
|||
|
||||
@Override
|
||||
public void setSelectedStones(Collection<Stone> stones) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
selectedStones = stones;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -60,6 +63,4 @@ public class MockView implements IView {
|
|||
return null;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
Reference in a new issue