Polish "Migrate LogbackLoggingSystemTests to JUnit 5"

See gh-17107
This commit is contained in:
Andy Wilkinson
2019-06-29 23:19:17 +01:00
parent 569830cdca
commit df5d23ff6c

View File

@@ -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);
}