Uses of Class
org.junit.jupiter.api.io.CleanupMode
-
Packages that use CleanupMode Package Description org.junit.jupiter.api.io IO-related support in JUnit Jupiter.org.junit.jupiter.engine.config Configuration specific to the JUnit Jupiter test engine.org.junit.jupiter.engine.extension Test extensions specific to the JUnit Jupiter test engine. -
-
Uses of CleanupMode in org.junit.jupiter.api.io
Methods in org.junit.jupiter.api.io that return CleanupMode Modifier and Type Method Description CleanupMode
cleanup()
How the temporary directory gets cleaned up after the test completes.static CleanupMode
CleanupMode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CleanupMode[]
CleanupMode. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of CleanupMode in org.junit.jupiter.engine.config
Fields in org.junit.jupiter.engine.config with type parameters of type CleanupMode Modifier and Type Field Description private static EnumConfigurationParameterConverter<CleanupMode>
DefaultJupiterConfiguration. cleanupModeConverter
Methods in org.junit.jupiter.engine.config that return CleanupMode Modifier and Type Method Description CleanupMode
CachingJupiterConfiguration. getDefaultTempDirCleanupMode()
CleanupMode
DefaultJupiterConfiguration. getDefaultTempDirCleanupMode()
CleanupMode
JupiterConfiguration. getDefaultTempDirCleanupMode()
-
Uses of CleanupMode in org.junit.jupiter.engine.extension
Fields in org.junit.jupiter.engine.extension declared as CleanupMode Modifier and Type Field Description private CleanupMode
TempDirectory.CloseablePath. cleanupMode
Methods in org.junit.jupiter.engine.extension that return CleanupMode Modifier and Type Method Description private CleanupMode
TempDirectory. determineCleanupMode(TempDir tempDir)
private CleanupMode
TempDirectory. determineCleanupModeForField(java.lang.reflect.Field field)
private CleanupMode
TempDirectory. determineCleanupModeForParameter(ParameterContext parameterContext)
Methods in org.junit.jupiter.engine.extension with parameters of type CleanupMode Modifier and Type Method Description (package private) static TempDirectory.CloseablePath
TempDirectory. createTempDir(TempDirFactory factory, CleanupMode cleanupMode, AnnotatedElementContext elementContext, ExtensionContext extensionContext)
private java.lang.Object
TempDirectory. getPathOrFile(AnnotatedElementContext elementContext, java.lang.Class<?> type, TempDirFactory factory, CleanupMode cleanupMode, TempDirectory.Scope scope, ExtensionContext extensionContext)
Constructors in org.junit.jupiter.engine.extension with parameters of type CleanupMode Constructor Description CloseablePath(TempDirFactory factory, CleanupMode cleanupMode, AnnotatedElementContext elementContext, ExtensionContext extensionContext)
-