Esempio n. 1
0
 public void DeadCellTests(int neighborsCount, CellState finalState)
 {
     Assert.Equal(finalState, CellStateHelpers.DetermineState(CellState.DEAD, neighborsCount));
 }
Esempio n. 2
0
 public void AliveCellTests(int neighborsCount, CellState finalState)
 {
     Assert.Equal(finalState, CellStateHelpers.DetermineState(CellState.ALIVE, neighborsCount));
 }