removeAllClusters() public method

public removeAllClusters ( $is_all = false )
コード例 #1
0
ファイル: FeatureContext.php プロジェクト: NSRagu/php-driver
 /**
  * Cleans test folders in the temporary directory.
  *
  * @BeforeSuite
  * @AfterSuite
  */
 public static function cleanTestFolders()
 {
     if (is_dir($dir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'php-driver')) {
         self::clearDirectory($dir);
     }
     $ccm = new \CCM('', '');
     $ccm->removeAllClusters();
 }
コード例 #2
0
ファイル: listener.php プロジェクト: harley84/php-driver
 /**
  * Destroy all CCM clusters when starting and stopping the integration tests.
  * This will only be run on startup and shutdown.
  */
 private function removeTestClusters()
 {
     $ccm = new \CCM(CCM::DEFAULT_CASSANDRA_VERSION, true);
     $ccm->removeAllClusters();
 }
コード例 #3
0
ファイル: Integration.php プロジェクト: r3nat/php-driver
 function __destruct()
 {
     $this->ccm->removeAllClusters();
 }