use of com.qubole.rubix.common.utils.DeleteFileVisitor in project rubix by qubole.
the class TestDiskUtils method tearDown.
@AfterMethod
public void tearDown() throws IOException {
Files.walkFileTree(Paths.get(testDirectory), new DeleteFileVisitor());
Files.deleteIfExists(Paths.get(testDirectory));
}
use of com.qubole.rubix.common.utils.DeleteFileVisitor in project rubix by qubole.
the class TestCachingInputStream method tearDownClass.
@AfterClass
public static void tearDownClass() throws IOException {
BookKeeperFactory.resetConnectionPool();
log.info("Deleting files in " + testDirectory);
Files.walkFileTree(Paths.get(testDirectory), new DeleteFileVisitor());
Files.deleteIfExists(Paths.get(testDirectory));
}
use of com.qubole.rubix.common.utils.DeleteFileVisitor in project rubix by qubole.
the class TestNonLocalReadRequestChain method tearDownClass.
@AfterClass
public static void tearDownClass() throws IOException {
log.info("Deleting files in " + testDirectory);
Files.walkFileTree(Paths.get(testDirectory), new DeleteFileVisitor());
Files.deleteIfExists(Paths.get(testDirectory));
}
use of com.qubole.rubix.common.utils.DeleteFileVisitor in project rubix by qubole.
the class TestGenerationNumber method tearDownClass.
@AfterClass
public static void tearDownClass() throws IOException {
Files.walkFileTree(Paths.get(testDirectory), new DeleteFileVisitor());
Files.deleteIfExists(Paths.get(testDirectory));
}
Aggregations