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