@Test
 public void testGetCoursesForDepartment() throws Exception {
   String[] deptartments = {"C S", "HIST", "MMBIO"};
   for (String id : deptartments) {
     System.out.println(data.getCoursesForDepartment(id));
   }
 }