コード例 #1
0
ファイル: AppsTest.php プロジェクト: rchicoli/owncloud-core
 public function testGetAppInfoOnBadAppID()
 {
     $result = $this->api->getAppInfo(['appid' => 'not_provisioning_api']);
     $this->assertInstanceOf('OC_OCS_Result', $result);
     $this->assertFalse($result->succeeded());
     $this->assertEquals(API::RESPOND_NOT_FOUND, $result->getStatusCode());
 }
コード例 #2
0
ファイル: appstest.php プロジェクト: Kevin-ZK/vaneDisk
 public function testGetAppInfoOnBadAppID()
 {
     $result = \OCA\provisioning_API\Apps::getAppInfo(array('appid' => 'not_provisioning_api'));
     $this->assertInstanceOf('OC_OCS_Result', $result);
     $this->assertFalse($result->succeeded());
     $this->assertEquals(\OCP\API::RESPOND_NOT_FOUND, $result->getStatusCode());
 }