コード例 #1
0
ファイル: remote.test.php プロジェクト: neosunchess/dokuwiki
 /**
  * @expectedException RemoteAccessDeniedException
  */
 function test_publicCallCoreDeny()
 {
     global $conf;
     $conf['useacl'] = 1;
     $remoteApi = new RemoteApi();
     $remoteApi->getCoreMethods(new RemoteAPICoreTest());
     $remoteApi->call('wiki.stringTestMethod');
 }