()
| 42 | private TemporaryFilesystem tmpFs; |
| 43 | |
| 44 | @BeforeEach |
| 45 | public void setUp() { |
| 46 | File baseForTest = new File(System.getProperty("java.io.tmpdir"), "tmpTest"); |
| 47 | baseForTest.mkdir(); |
| 48 | tmpFs = TemporaryFilesystem.getTmpFsBasedOn(baseForTest); |
| 49 | |
| 50 | inputDir = tmpFs.createTempDir("input", "ziptest"); |
| 51 | outputDir = tmpFs.createTempDir("output", "ziptest"); |
| 52 | } |
| 53 | |
| 54 | @AfterEach |
| 55 | public void tearDown() { |
nothing calls this directly
no test coverage detected