public void CheckProcreationTest(List <Cell> neighbours, bool expected) { bool result = GameOfLife.CheckProcreation(neighbours); Assert.That(result, Is.EqualTo(expected)); }