Ejemplo n.º 1
0
        public void AnyLiveCellHavingThreeNeighborsWithFewerThanTwoLiveNeighborsDies()
        {
            grid.BringToLife(1, 1);
            grid.Tick();

            var isAlive = grid.IsCellAlive(1, 1);

            Assert.IsFalse(isAlive);
        }