Test initial display of hand stones
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@133 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
75f1382b82
commit
16da68b0ae
3 changed files with 35 additions and 4 deletions
|
@ -9,6 +9,8 @@ import jrummikub.util.Pair;
|
|||
public class MockHand implements IHand {
|
||||
|
||||
public List<Stone> stones = new ArrayList<Stone>();
|
||||
|
||||
public Iterable<Pair<Stone, Position>> iterable;
|
||||
|
||||
@Override
|
||||
public Stone pickUp(Position position) {
|
||||
|
@ -39,8 +41,7 @@ public class MockHand implements IHand {
|
|||
|
||||
@Override
|
||||
public Iterator<Pair<Stone, Position>> iterator() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
return iterable.iterator();
|
||||
}
|
||||
|
||||
public MockHand clone() {
|
||||
|
|
Reference in a new issue