diff --git a/app/src/test/java/model/SquareCellTest.java b/app/src/test/java/model/SquareCellTest.java index 7355a71a95a0859eba8250faa4510d9a5dbfa36d..fb4d0c298f498b6bae5de43e011dd3235e248cb4 100644 --- a/app/src/test/java/model/SquareCellTest.java +++ b/app/src/test/java/model/SquareCellTest.java @@ -19,13 +19,13 @@ class SquareCellTest { private final Cell centralCell = new SquareCell(Color.CHOCOLATE); - @BeforeEach - void testInitializeNeighbourhood(){ + /* @BeforeEach + void testInitializeNeighbourhood(){ centralCell.setNeighbours(List.of(northCell,southCell,westCell,eastCell)); westCell.setNeighbours(List.of(centralCell)); eastCell.setNeighbours(List.of(centralCell)); southCell.setNeighbours(List.of(centralCell)); - northCell.setNeighbours(List.of(centralCell)); + northCell.setNeighbours(List.of(centralCell));*/ } @Test void testIterator() {