// Returns how many nodes are in the tree - public so that it can be accesed by another form
 public int getCount()
 {
     return(CTree.Count());
 }
 public void testCount()
 {
     Assert.AreEqual(15, CT.Count());
 }