Exemplo n.º 1
0
        public void Exercise2_Method3_False()
        {
            CellAbleitung cell = new CellAbleitung();

            Assert.False(cell.IsAlive(5));
        }
Exemplo n.º 2
0
        public bool Method3(int o1)
        {
            CellAbleitung cell = new CellAbleitung();

            return(cell.IsAlive());
        }
Exemplo n.º 3
0
        public void Exercise2_Method3_True()
        {
            CellAbleitung cell = new CellAbleitung();

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