Exemplo n.º 1
0
 public void IsCellAlive()
 {
     Oscillator osc = new Oscillator();
     List<List<bool>> board = osc.GetBoardCells();
     Assert.IsTrue(board[0][1]);
     Assert.IsFalse(board[1][1]);
 }
Exemplo n.º 2
0
 public void IsThereABoard()
 {
     Oscillator osc = new Oscillator();
     List<List<bool>> board = osc.GetBoardCells();
     Assert.IsNotNull(board);
 }