Uses of Interface
org.junit.jupiter.api.io.TempDirFactory
-
Packages that use TempDirFactory 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 TempDirFactory in org.junit.jupiter.api.io
Classes in org.junit.jupiter.api.io that implement TempDirFactory Modifier and Type Class Description static class
TempDirFactory.Standard
StandardTempDirFactory
implementation which delegates toFiles.createTempDirectory(java.nio.file.Path, java.lang.String, java.nio.file.attribute.FileAttribute<?>...)
using"junit"
as the prefix.Fields in org.junit.jupiter.api.io declared as TempDirFactory Modifier and Type Field Description static TempDirFactory
TempDirFactory.Standard. INSTANCE
Methods in org.junit.jupiter.api.io that return types with arguments of type TempDirFactory Modifier and Type Method Description java.lang.Class<? extends TempDirFactory>
factory()
Factory for the temporary directory. -
Uses of TempDirFactory in org.junit.jupiter.engine.config
Fields in org.junit.jupiter.engine.config with type parameters of type TempDirFactory Modifier and Type Field Description private static InstantiatingConfigurationParameterConverter<TempDirFactory>
DefaultJupiterConfiguration. tempDirFactoryConverter
Methods in org.junit.jupiter.engine.config that return types with arguments of type TempDirFactory Modifier and Type Method Description java.util.function.Supplier<TempDirFactory>
CachingJupiterConfiguration. getDefaultTempDirFactorySupplier()
java.util.function.Supplier<TempDirFactory>
DefaultJupiterConfiguration. getDefaultTempDirFactorySupplier()
java.util.function.Supplier<TempDirFactory>
JupiterConfiguration. getDefaultTempDirFactorySupplier()
-
Uses of TempDirFactory in org.junit.jupiter.engine.extension
Fields in org.junit.jupiter.engine.extension declared as TempDirFactory Modifier and Type Field Description private TempDirFactory
TempDirectory.CloseablePath. factory
Methods in org.junit.jupiter.engine.extension that return TempDirFactory Modifier and Type Method Description private TempDirFactory
TempDirectory. determineTempDirFactory(TempDir tempDir, TempDirectory.Scope scope)
private TempDirFactory
TempDirectory. determineTempDirFactoryForField(java.lang.reflect.Field field, TempDirectory.Scope scope)
private TempDirFactory
TempDirectory. determineTempDirFactoryForParameter(ParameterContext parameterContext, TempDirectory.Scope scope)
Methods in org.junit.jupiter.engine.extension with parameters of type TempDirFactory 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 TempDirFactory Constructor Description CloseablePath(TempDirFactory factory, CleanupMode cleanupMode, AnnotatedElementContext elementContext, ExtensionContext extensionContext)
-