1516171819202122232425
} @Test public void canPrintTheState() { StorageHouse sh = new StorageHouse(1); assertEquals("0: a\n", sh.printState()); } @Test public void canPrintStateWithCapacity2() {
2223242526272829303132
@Test public void canPrintStateWithCapacity2() { StorageHouse storageHouse = new StorageHouse(2); assertEquals("0: a\n1: b\n", storageHouse.printState()); } @Test @Ignore("Needs to have remove working on Column") public void canMoveBoxAOntoBoxB() {
303132333435363738
@Test @Ignore("Needs to have remove working on Column") public void canMoveBoxAOntoBoxB() { StorageHouse storageHouse = new StorageHouse(2); storageHouse.moveOnto("a", "b"); assertEquals("0:\n1: b a\n", storageHouse.printState()); } }