Пример #1
0
 public void DidCountLivingNeighborsWork()
 {
     DansGameOfLife aNewBoard = new DansGameOfLife();
     Assert.AreEqual(2, aNewBoard.CountLivingNeighbors(1, 1));
 }
Пример #2
0
 public void IsThereABoard()
 {
     DansGameOfLife aNewBoard = new DansGameOfLife();
     bool expected = aNewBoard.cells[0][0];
     Assert.IsTrue(true == expected);
 }