public void Exercise2_Method3_False()
        {
            CellAbleitung cell = new CellAbleitung();

            Assert.False(cell.IsAlive(5));
        }
        public bool Method3(int o1)
        {
            CellAbleitung cell = new CellAbleitung();

            return(cell.IsAlive());
        }
        public void Exercise2_Method3_True()
        {
            CellAbleitung cell = new CellAbleitung();

            Assert.True(cell.IsAlive(4));
        }