@Test(expected=NullPointerException.class)
public void testCreateNullCourse()
{
System.out.println("createNullCourse");
Course course = null;
Instructor instructor = new Instructor("Sarah", "O'Reilly",
"Sarah.OReilly");
instructor.setId(6L);
instructor.setDomainAccount("Sarah.OReilly");
Section section = new Section("T1A");
//System.out.println("- Setting Course");
section.setId(5L);
section.setInstructor(instructor);