use of org.testng.annotations.AfterClass in project incubator-gobblin by apache.
the class HiveOrcSerDeManagerTest method tearDown.
@AfterClass
public void tearDown() throws IOException {
FileSystem fs = FileSystem.getLocal(new Configuration());
fs.delete(this.testBasePath, true);
}
use of org.testng.annotations.AfterClass in project incubator-gobblin by apache.
the class CopyIntegrationTest method cleanup.
@AfterClass
@BeforeClass
public void cleanup() throws Exception {
FileSystem fs = FileSystem.getLocal(new Configuration());
fs.delete(new Path("gobblin-test-harness/testOutput"), true);
}
use of org.testng.annotations.AfterClass in project incubator-gobblin by apache.
the class HiveAvroSerDeManagerTest method tearDown.
@AfterClass
public void tearDown() throws IOException {
FileSystem fs = FileSystem.getLocal(new Configuration());
fs.delete(this.testBasePath, true);
}
use of org.testng.annotations.AfterClass in project incubator-gobblin by apache.
the class Kafka08DataWriterIntegrationTest method cleanup.
@AfterClass
@BeforeClass
public void cleanup() throws Exception {
File file = new File("gobblin-kafka/testOutput");
FileUtils.deleteDirectory(file);
}
use of org.testng.annotations.AfterClass in project incubator-gobblin by apache.
the class DatePartitionedAvroFileExtractorTest method tearDown.
@AfterClass
public void tearDown() throws IOException {
this.writer.close();
FileUtils.deleteDirectory(new File(TEST_ROOT_DIR));
}
Aggregations