pm = Datastore.getPersistenceManager();
//create course
Course a = new Course(COURSE_ID, "Testing Course", "teammates.coord");
pm.makePersistent(a);
//create evaluation
Evaluation eval = new Evaluation(COURSE_ID, "Testing Course", "instructions", true, new Date(), new Date(), 8, 5);
pm.makePersistent(eval);
//enroll students
List<Student> studentList = new ArrayList<Student>();
studentList.add(new Student("alice.tmms@gmail.com", "Alice", "This is Alice", COURSE_ID, "Team 1"));