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