Exemplo n.º 1
0
        public void StapTerugGeeftCorrecteNodeTerug()
        {
            tree = new DeterminatieTree(rootTree2, Graad.graad2);
            tree.StapVerder(false);
            Node n = tree.StapTerug();

            Assert.AreEqual(rootTree2, n);
        }
Exemplo n.º 2
0
 public void StapTerugVerwijdertLaatsteKeuzeUitLeerlingKeuzes()
 {
     tree = new DeterminatieTree(rootTree2, Graad.graad2);
     tree.StapVerder(false);
     Assert.AreEqual(1, tree.Keuzes.Count);
     tree.StapTerug();
     Assert.AreEqual(0, tree.Keuzes.Count);
 }
Exemplo n.º 3
0
 public void StapTerugGooitInvalidOperationOpRootNode()
 {
     tree = new DeterminatieTree(rootTree2, Graad.graad2);
     tree.StapTerug();
 }