Skip to content
Snippets Groups Projects
Commit 0ca0963b authored by BEL KHALIFA Mohamed amine's avatar BEL KHALIFA Mohamed amine
Browse files

colorGenerator

parent 8ee16655
No related branches found
No related tags found
No related merge requests found
......@@ -19,13 +19,13 @@ class SquareCellTest {
private final Cell centralCell = new SquareCell(Color.CHOCOLATE);
@BeforeEach
/* @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() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment