public void CheckOvercrowdingTest(List <Cell> neighbours, bool expected)
        {
            bool result = GameOfLife.CheckOvercrowding(neighbours);

            Assert.That(result, Is.EqualTo(expected));
        }