"David.Roberts");
instructor.setId(5L);
instructor.setDomainAccount("David.Roberts");
ArrayList<Section> expectedResults = new ArrayList<Section>();
Section section1 = new Section("T5A");
section1.setId(3L);
section1.setInstructor(instructor);
section1.setCourse(course);
expectedResults.add(section1);
Section section2 = new Section("T6A");
section2.setId(4L);
section2.setInstructor(instructor);
section2.setCourse(course);
expectedResults.add(section2);
assertTrue(instance.isOpen());
List results = instance.getSectionsForCourseAndInstructor(course, instructor);
System.out.println("- Results Size (expecting 2): " + results.size());