public void EqualsTest()
 {
     MenuStructure target = new MenuStructure() { Title = "News", SiteNumber = 100 };
     object obj = null;
     bool expected = false;
     bool actual;
     actual = target.Equals(obj);
     Assert.AreEqual(expected, actual);
 }
 public void EqualsTest()
 {
     MenuStructure target = new MenuStructure(); // TODO: Initialize to an appropriate value
     object obj = null; // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.Equals(obj);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }