コード例 #1
0
 public void TestMethodWidthTree(int[] array, int count)
 {
     Tree tree = new Tree();
     tree.Init(array);
     Assert.AreEqual(count, tree.Width());
 }