public void ImportRecordTest()
 {
     ExistingStudentImport target = new ExistingStudentImport(); // TODO: Initialize to an appropriate value
     StudentImportRecord expected = null; // TODO: Initialize to an appropriate value
     StudentImportRecord actual;
     target.ImportRecord = expected;
     actual = target.ImportRecord;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ExistingStudentImportConstructorTest()
 {
     ExistingStudentImport target = new ExistingStudentImport();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }