Removed test folder

This commit is contained in:
Cole Landers
2018-04-04 22:40:30 -06:00
parent f7f490f2b8
commit 847b10d3b0
2 changed files with 0 additions and 17 deletions

View File

@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<classpath> <classpath>
<classpathentry kind="src" path="src"/> <classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="test"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-9"> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-9">
<attributes> <attributes>
<attribute name="module" value="true"/> <attribute name="module" value="true"/>

View File

@@ -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());
}
}