private void testToString(BasicHeap <DSInteger> the_heap)
 {
     //just test for no exceptions, leave the output to the programmer, user
     try
     {
         the_heap.ToString();
     }
     catch (Exception the_ex)
     {
         Assert.Fail();
     }
 }