Ejemplo n.º 1
0
  @Test
  public void classRosterTestFindStudent() throws Exception {
    roster.loadRoster();
    Student thisStudent = roster.viewStudentInfo("studentId");

    assertEquals("firstName", thisStudent.getFirstName());
  }
Ejemplo n.º 2
0
  @Test
  public void classRosterListAllStudents() throws Exception {
    ArrayList<Student> allStudents;

    roster.loadRoster();
    allStudents = roster.listAllStudents();

    assertEquals(0, roster.countStudents());
  }
Ejemplo n.º 3
0
  @Test
  public void classRosterTestSaveAndLoadRoster() throws Exception {
    Student newStudent = new Student("firstName", "lastName", "studentId", "cohort");

    roster.addStudent(newStudent.getStudentId(), newStudent);
    roster.saveRoster();
    roster.removeStudent("studentId");
    roster.loadRoster();

    assertEquals(1, roster.countStudents());
  }
Ejemplo n.º 4
0
  @Test
  public void classRosterTestLoadRoster() throws Exception {
    roster.loadRoster();

    assertEquals(1, roster.countStudents());
  }