예제 #1
0
 public function testUninitializedClusterFailsOnOverspill()
 {
     $query = new AfsQuery();
     try {
         $query->set_overspill();
         $this->fail('Setting overspill on uninitialized cluster should have failed!');
     } catch (AfsClusterException $e) {
     }
 }