public void CompareToTest() { string name = string.Empty; // TODO: Initialize to an appropriate value IComparable target = new PropertyAttributes(name); // TODO: Initialize to an appropriate value object obj = null; // TODO: Initialize to an appropriate value int expected = 0; // TODO: Initialize to an appropriate value int actual; actual = target.CompareTo(obj); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }