Made StoneSet iterable

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@31 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-04-30 18:21:22 +02:00
parent 36da8c8a17
commit f9b396875a
2 changed files with 46 additions and 3 deletions

View file

@ -63,4 +63,18 @@ public class StoneSetTest {
assertSame(testSet.get(2), joinedSet.get(2));
assertSame(secondSet.get(0), joinedSet.get(3));
}
//iterator
@Test
public void testIterator() {
StoneSet testSet = createTestSet();
int i = 0;
for(Stone stone : testSet) {
assertSame(stone,testSet.get(i));
i++;
}
assertEquals(i, testSet.size());
}
}