Exemple #1
0
 /**
  * @expectedException coding_exception
  */
 public function test_cannot_set_inconsistent_activity_record_instance()
 {
     // Setup fixture.
     $course = $this->getDataGenerator()->create_course();
     $forum = $this->getDataGenerator()->create_module('forum', array('course' => $course->id));
     $cm = get_coursemodule_from_id('forum', $forum->cmid);
     $this->testpage->set_cm($cm);
     // Exercise SUT.
     $forum->id = 13;
     $this->testpage->set_activity_record($forum);
 }