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