コード例 #1
0
ファイル: queryTest.php プロジェクト: antidot/php_api
 public function testUninitializedClusterFailsOnMaxClusters()
 {
     $query = new AfsQuery();
     try {
         $query->set_max_clusters(42);
         $this->fail('Setting Max Clusters on uninitialized cluster should have failed!');
     } catch (AfsClusterException $e) {
     }
 }