Esempio n. 1
0
 public function test_mod_lti_delete_tool_type_without_capability()
 {
     $type = mod_lti_external::create_tool_type($this->getExternalTestFileUrl('/ims_cartridge_basic_lti_link.xml'), '', '');
     $this->assertNotEmpty(lti_get_type($type['id']));
     $this->expectException('required_capability_exception');
     self::setUser($this->teacher);
     $type = mod_lti_external::delete_tool_type($type['id']);
 }