Uses of Class
org.junit.jupiter.api.extension.ExtensionContext.Namespace
-
Packages that use ExtensionContext.Namespace Package Description org.junit.jupiter.api.extension JUnit Jupiter API for writing extensions.org.junit.jupiter.engine.descriptor Test descriptors used within the JUnit Jupiter test engine.org.junit.jupiter.engine.execution Internal classes for test execution within the JUnit Jupiter test engine.org.junit.jupiter.engine.extension Test extensions specific to the JUnit Jupiter test engine.org.junit.jupiter.params JUnit Jupiter extension for parameterized tests. -
-
Uses of ExtensionContext.Namespace in org.junit.jupiter.api.extension
Fields in org.junit.jupiter.api.extension declared as ExtensionContext.Namespace Modifier and Type Field Description static ExtensionContext.Namespace
ExtensionContext.Namespace. GLOBAL
The default, global namespace which allows access to stored data from all extensions.Methods in org.junit.jupiter.api.extension that return ExtensionContext.Namespace Modifier and Type Method Description ExtensionContext.Namespace
ExtensionContext.Namespace. append(java.lang.Object... parts)
Create a new namespace by appending the suppliedparts
to the existing sequence of parts in this namespace.static ExtensionContext.Namespace
ExtensionContext.Namespace. create(java.lang.Object... parts)
Create a namespace which restricts access to data to all extensions which use the same sequence ofparts
for creating a namespace.Methods in org.junit.jupiter.api.extension with parameters of type ExtensionContext.Namespace Modifier and Type Method Description ExtensionContext.Store
ExtensionContext. getStore(ExtensionContext.Namespace namespace)
Get theExtensionContext.Store
for the suppliedExtensionContext.Namespace
. -
Uses of ExtensionContext.Namespace in org.junit.jupiter.engine.descriptor
Methods in org.junit.jupiter.engine.descriptor with parameters of type ExtensionContext.Namespace Modifier and Type Method Description ExtensionContext.Store
AbstractExtensionContext. getStore(ExtensionContext.Namespace namespace)
-
Uses of ExtensionContext.Namespace in org.junit.jupiter.engine.execution
Fields in org.junit.jupiter.engine.execution declared as ExtensionContext.Namespace Modifier and Type Field Description private ExtensionContext.Namespace
ExtensionValuesStore.CompositeKey. namespace
private ExtensionContext.Namespace
NamespaceAwareStore. namespace
Methods in org.junit.jupiter.engine.execution with parameters of type ExtensionContext.Namespace Modifier and Type Method Description (package private) java.lang.Object
ExtensionValuesStore. get(ExtensionContext.Namespace namespace, java.lang.Object key)
(package private) <T> T
ExtensionValuesStore. get(ExtensionContext.Namespace namespace, java.lang.Object key, java.lang.Class<T> requiredType)
(package private) <K,V>
java.lang.ObjectExtensionValuesStore. getOrComputeIfAbsent(ExtensionContext.Namespace namespace, K key, java.util.function.Function<K,V> defaultCreator)
(package private) <K,V>
VExtensionValuesStore. getOrComputeIfAbsent(ExtensionContext.Namespace namespace, K key, java.util.function.Function<K,V> defaultCreator, java.lang.Class<V> requiredType)
(package private) void
ExtensionValuesStore. put(ExtensionContext.Namespace namespace, java.lang.Object key, java.lang.Object value)
(package private) java.lang.Object
ExtensionValuesStore. remove(ExtensionContext.Namespace namespace, java.lang.Object key)
(package private) <T> T
ExtensionValuesStore. remove(ExtensionContext.Namespace namespace, java.lang.Object key, java.lang.Class<T> requiredType)
Constructors in org.junit.jupiter.engine.execution with parameters of type ExtensionContext.Namespace Constructor Description CompositeKey(ExtensionContext.Namespace namespace, java.lang.Object key)
NamespaceAwareStore(ExtensionValuesStore valuesStore, ExtensionContext.Namespace namespace)
-
Uses of ExtensionContext.Namespace in org.junit.jupiter.engine.extension
Fields in org.junit.jupiter.engine.extension declared as ExtensionContext.Namespace Modifier and Type Field Description private static ExtensionContext.Namespace
TempDirectory. NAMESPACE
private static ExtensionContext.Namespace
TimeoutExtension. NAMESPACE
-
Uses of ExtensionContext.Namespace in org.junit.jupiter.params
Fields in org.junit.jupiter.params declared as ExtensionContext.Namespace Modifier and Type Field Description private static ExtensionContext.Namespace
ParameterizedTestParameterResolver. NAMESPACE
-