Commit df5d23ff authored by Andy Wilkinson's avatar Andy Wilkinson

Polish "Migrate LogbackLoggingSystemTests to JUnit 5"

See gh-17107
parent 569830cd
......@@ -38,18 +38,18 @@ public abstract class AbstractLoggingSystemTests {
private String originalTempFolder;
@BeforeEach
public void configureTempDir(@TempDir Path temp) {
void configureTempDir(@TempDir Path temp) {
this.originalTempFolder = System.getProperty(JAVA_IO_TMPDIR);
System.setProperty(JAVA_IO_TMPDIR, temp.toAbsolutePath().toString());
}
@AfterEach
public void reinstateTempDir() {
void reinstateTempDir() {
System.setProperty(JAVA_IO_TMPDIR, this.originalTempFolder);
}
@AfterEach
public void clear() {
void clear() {
System.clearProperty(LoggingSystemProperties.LOG_FILE);
System.clearProperty(LoggingSystemProperties.PID_KEY);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment