From 0ca0963b410d37443135cf71286941d5b181529a Mon Sep 17 00:00:00 2001
From: b21221851 <mohamed-amine.BEL-KHALIFA@etu.univ-amu.fr>
Date: Wed, 2 Nov 2022 10:58:08 +0100
Subject: [PATCH] colorGenerator

---
 app/src/test/java/model/SquareCellTest.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app/src/test/java/model/SquareCellTest.java b/app/src/test/java/model/SquareCellTest.java
index 7355a71..fb4d0c2 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() {
-- 
GitLab