use of org.testng.annotations.AfterClass in project cloudbreak by hortonworks.
the class MockClusterScalingTest method breakDown.
@AfterClass
public void breakDown() {
ScalingMock scalingMock = getItContext().getContextParam(CloudbreakV2Constants.MOCK_SERVER, ScalingMock.class);
scalingMock.stop();
}
use of org.testng.annotations.AfterClass in project cloudbreak by hortonworks.
the class MockInstanceTerminationReplicationErrorTest method breakDown.
@AfterClass
public void breakDown() {
MockServer instanceTerminationMock = getItContext().getContextParam(CloudbreakV2Constants.MOCK_SERVER, InstanceTerminationReplicationErrorMock.class);
instanceTerminationMock.stop();
}
use of org.testng.annotations.AfterClass in project cloudbreak by hortonworks.
the class MockInstanceTerminationTest method breakDown.
@AfterClass
public void breakDown() {
MockServer instanceTerminationMock = getItContext().getContextParam(CloudbreakV2Constants.MOCK_SERVER, InstanceTerminationMock.class);
instanceTerminationMock.stop();
}
use of org.testng.annotations.AfterClass in project shifu by ShifuML.
the class ConfusionMatrixTest method tearDown.
@AfterClass
public void tearDown() throws IOException {
File dir = new File("test");
FileUtils.deleteDirectory(dir);
FileUtils.deleteDirectory(new File("./models"));
}
use of org.testng.annotations.AfterClass in project shifu by ShifuML.
the class SVMTrainerTest method shutDown.
@AfterClass
public void shutDown() throws IOException {
FileUtils.deleteDirectory(new File("./models/"));
FileUtils.deleteDirectory(new File("./modelsTmp/"));
Encog.getInstance().shutdown();
}
Aggregations