コード例 #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]);
 }
コード例 #2
0
 public void IsThereABoard()
 {
     Oscillator osc = new Oscillator();
     List<List<bool>> board = osc.GetBoardCells();
     Assert.IsNotNull(board);
 }