Esempio n. 1
0
 public void MinimumTest()
 {
     RBTree target = new RBTree(); // TODO: Initialize to an appropriate value
     RBTree.Node x = null; // TODO: Initialize to an appropriate value
     RBTree.Node expected = null; // TODO: Initialize to an appropriate value
     RBTree.Node actual;
     actual = target.Minimum(x);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }