First commit of Conway's Game of Life project!

This commit is contained in:
Cole Landers
2018-03-30 23:46:05 -06:00
commit a7dd247716
7 changed files with 275 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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());
}
}