コード例 #1
0
ファイル: externallib_test.php プロジェクト: dg711/moodle
 /**
  * Test update_picture disabled
  */
 public function test_update_picture_disabled()
 {
     global $CFG;
     $this->resetAfterTest(true);
     $CFG->disableuserimages = true;
     $this->setAdminUser();
     $this->expectException('moodle_exception');
     core_user_external::update_picture(0);
 }