public void CompareTest()
 {
     PrivateObject param0 = null; // TODO: Initialize to an appropriate value
     TableAdapterManager_Accessor.SelfReferenceComparer target = new TableAdapterManager_Accessor.SelfReferenceComparer(param0); // TODO: Initialize to an appropriate value
     DataRow row1 = null; // TODO: Initialize to an appropriate value
     DataRow row2 = null; // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.Compare(row1, row2);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void GetRootTest()
 {
     PrivateObject param0 = null; // TODO: Initialize to an appropriate value
     TableAdapterManager_Accessor.SelfReferenceComparer target = new TableAdapterManager_Accessor.SelfReferenceComparer(param0); // TODO: Initialize to an appropriate value
     DataRow row = null; // TODO: Initialize to an appropriate value
     int distance = 0; // TODO: Initialize to an appropriate value
     int distanceExpected = 0; // TODO: Initialize to an appropriate value
     DataRow expected = null; // TODO: Initialize to an appropriate value
     DataRow actual;
     actual = target.GetRoot(row, out distance);
     Assert.AreEqual(distanceExpected, distance);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void TableAdapterManager_SelfReferenceComparerConstructorTest()
 {
     DataRelation relation = null; // TODO: Initialize to an appropriate value
     bool childFirst = false; // TODO: Initialize to an appropriate value
     TableAdapterManager_Accessor.SelfReferenceComparer target = new TableAdapterManager_Accessor.SelfReferenceComparer(relation, childFirst);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }