Skip to content

v0.1.0

Compare
Choose a tag to compare
@scordio scordio released this 30 Jul 16:26
· 24 commits to main since this release

The first release of Jimfs JUnit Jupiter.

Maven

<dependency>
  <groupId>io.github.scordio</groupId>
  <artifactId>jimfs-junit-jupiter</artifactId>
  <version>0.1.0</version>
  <scope>test</scope>
</dependency>

Gradle

testImplementation("io.github.scordio:jimfs-junit-jupiter:0.1.0")

Quick Start

import io.github.scordio.jimfs.junit.jupiter.JimfsTempDir;

...

@Test
void test(@JimfsTempDir Path tempDir) {
  // test body
}