public void ImportSchoolsTest()
 {
     IDataRepo repo = null; // TODO: Initialize to an appropriate value
     SchoolImporter target = new SchoolImporter(repo); // TODO: Initialize to an appropriate value
     int districtID = 0; // TODO: Initialize to an appropriate value
     IEnumerable<SchoolImportRecord> importRecords = null; // TODO: Initialize to an appropriate value
     SchoolImportResult expected = null; // TODO: Initialize to an appropriate value
     SchoolImportResult actual;
     actual = target.ImportSchools(districtID, importRecords);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void SchoolImporterConstructorTest()
 {
     IDataRepo repo = null; // TODO: Initialize to an appropriate value
     SchoolImporter target = new SchoolImporter(repo);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }