From 847b10d3b02bdea639221e7fb41fb3766ea77038 Mon Sep 17 00:00:00 2001 From: Cole Landers Date: Wed, 4 Apr 2018 22:40:30 -0600 Subject: [PATCH] Removed test folder --- .classpath | 1 - test/gameoflifetest/CellTest.java | 16 ---------------- 2 files changed, 17 deletions(-) delete mode 100644 test/gameoflifetest/CellTest.java 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()); - } - -}