Ejemplo n.º 1
0
        public void GetLivingNeighbours_ShouldReturnZeroWheTheGameStarts
            (int idCell, int expectedAliveNeighbours)
        {
            int AliveNeighbours = simpleUniverse.GetNumberOfAliveNeighbours(idCell);

            Assert.AreEqual(expectedAliveNeighbours, AliveNeighbours);
        }