public void GetHashCodeTest()
 {
     SchoolImportRecord target = new SchoolImportRecord(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.GetHashCode();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void NameTest()
 {
     SchoolImportRecord target = new SchoolImportRecord(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.Name = expected;
     actual = target.Name;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void EqualsTest()
 {
     SchoolImportRecord target = new SchoolImportRecord(); // 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.");
 }
 public void SchoolImportRecordConstructorTest()
 {
     SchoolImportRecord target = new SchoolImportRecord();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }