public void FindOrCreateClassTest()
 {
     PrivateObject param0 = null; // TODO: Initialize to an appropriate value
     StudentImporter2_Accessor target = new StudentImporter2_Accessor(param0); // TODO: Initialize to an appropriate value
     int districtID = 0; // TODO: Initialize to an appropriate value
     School school = null; // TODO: Initialize to an appropriate value
     int schoolPeriodID = 0; // TODO: Initialize to an appropriate value
     Teacher teacher = null; // TODO: Initialize to an appropriate value
     NewStudentImport newStudentImport = null; // TODO: Initialize to an appropriate value
     Class expected = null; // TODO: Initialize to an appropriate value
     Class actual;
     actual = target.FindOrCreateClass(districtID, school, schoolPeriodID, teacher, newStudentImport);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ImportStudentsTest1()
 {
     PrivateObject param0 = null; // TODO: Initialize to an appropriate value
     StudentImporter2_Accessor target = new StudentImporter2_Accessor(param0); // 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
     target.ImportStudents(districtID, reportingPeriodID, importRecords);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void TransferStudentSchoolTest()
 {
     PrivateObject param0 = null; // TODO: Initialize to an appropriate value
     StudentImporter2_Accessor target = new StudentImporter2_Accessor(param0); // TODO: Initialize to an appropriate value
     Student student = null; // TODO: Initialize to an appropriate value
     School fromSchool = null; // TODO: Initialize to an appropriate value
     School toSchool = null; // TODO: Initialize to an appropriate value
     target.TransferStudentSchool(student, fromSchool, toSchool);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void MatchSchoolsTest1()
 {
     PrivateObject param0 = null; // TODO: Initialize to an appropriate value
     StudentImporter2_Accessor target = new StudentImporter2_Accessor(param0); // TODO: Initialize to an appropriate value
     int districtID = 0; // TODO: Initialize to an appropriate value
     IEnumerable<ExistingStudentImport> existingStudentImports = null; // TODO: Initialize to an appropriate value
     target.MatchSchools(districtID, existingStudentImports);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }