Test: Ignore dropping of null on StoneTrays
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@88 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
1bed4a77a5
commit
7ef7a4ce21
1 changed files with 6 additions and 0 deletions
|
@ -50,6 +50,12 @@ public class StoneTrayTest {
|
||||||
assertEquals(8.5, secondPosition.getY(), 0.00001);
|
assertEquals(8.5, secondPosition.getY(), 0.00001);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testDropNull() {
|
||||||
|
testTray.drop(null, new Position(0,0));
|
||||||
|
assertFalse(testTray.iterator().hasNext());
|
||||||
|
}
|
||||||
|
|
||||||
// Leftshift
|
// Leftshift
|
||||||
@Test
|
@Test
|
||||||
public void testLeftDrop() {
|
public void testLeftDrop() {
|
||||||
|
|
Reference in a new issue