Esempio n. 1
0
 public void NeighbourhoodsContainFourCellsInAGrid()
 {
     var cell = new Cell();
     var neighbourhood = new Neighbourhood(cell, cell, cell, cell);
 }
Esempio n. 2
0
 public void NeighbourhoodsContainFourCells()
 {
     var cell = new Cell();
     var neighbourhood = new Neighbourhood(cell, cell, cell, cell);
     Assert.AreEqual(4, neighbourhood.Cells.Count);
 }