diff --git a/.classpath b/.classpath index 6caf0ec..59db47a 100644 --- a/.classpath +++ b/.classpath @@ -1,7 +1,6 @@ - diff --git a/test/gameoflifetest/CellTest.java b/test/gameoflifetest/CellTest.java deleted file mode 100644 index 23bdb00..0000000 --- a/test/gameoflifetest/CellTest.java +++ /dev/null @@ -1,16 +0,0 @@ -package gameoflifetest; - -import gameoflife.Cell; - -import static org.junit.jupiter.api.Assertions.*; -import org.junit.jupiter.api.Test; - -class CellTest { - static Cell cell; - @Test - void getStatusTest() { - cell = new Cell((double)5, (double)5, 3, 1); - assertEquals(Cell.Status.DEAD,cell.getStatus()); - } - -}