Example #1
0
 public void ClearTest(int[] mas)
 {
     BinaryTreeLink b = new BinaryTreeLink();
     b.Init(mas);
     b.Clear();
     int size = b.Size();
     Assert.AreEqual(0, size);
 }