public function testSetRoomScheduleSection()
 {
     $roomsched = new RoomSchedule();
     $section = new Section();
     $section->setSectionCode("4A");
     $roomsched->setSectionCode($section->getSectionCode());
     $this->assertEquals("4A", $section->getSectionCode());
     $this->assertEquals("4A", $roomsched->getSectionCode());
 }
 public function testSetSection()
 {
     $section = new Section();
     $section->setSectionCode("IT4B");
     $section->setCourseCode("IT 109");
     $section->setClassSize(30);
     $this->assertEquals("IT4B", $section->getSectionCode());
     $this->assertEquals("IT 109", $section->getCourseCode());
     $this->assertEquals(30, $section->getClassSize());
 }