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

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