@AfterMethod(alwaysRun = true)
public void shutdownStorageNode() throws Exception {
if (FileUtils.getFile(storageDir, "bin", "cassandra.pid").exists()) {
CassandraClusterManager ccm = new CassandraClusterManager();
ccm.killNode(storageDir);
Thread.sleep(1000);
}
}
@Test