public void ImportStudentsTest()
 {
     IDataRepo repo = null; // TODO: Initialize to an appropriate value
     StudentImporter2 target = new StudentImporter2(repo); // TODO: Initialize to an appropriate value
     int districtID = 0; // TODO: Initialize to an appropriate value
     int reportingPeriodID = 0; // TODO: Initialize to an appropriate value
     IEnumerable<StudentImportRecord> importRecords = null; // TODO: Initialize to an appropriate value
     StudentImportOptions[] importOptions = null; // TODO: Initialize to an appropriate value
     StudentImportResult expected = null; // TODO: Initialize to an appropriate value
     StudentImportResult actual;
     actual = target.ImportStudents(districtID, reportingPeriodID, importRecords, importOptions);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void StudentImporter2ConstructorTest()
 {
     IDataRepo repo = null; // TODO: Initialize to an appropriate value
     StudentImporter2 target = new StudentImporter2(repo);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }