MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / setUp

Method setUp

java/test/org/openqa/selenium/io/ZipTest.java:44–52  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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() {

Callers

nothing calls this directly

Calls 3

getTmpFsBasedOnMethod · 0.95
getPropertyMethod · 0.80
createTempDirMethod · 0.80

Tested by

no test coverage detected