Uses of Interface
org.junit.jupiter.api.extension.Extension
-
Packages that use Extension Package Description org.junit.jupiter.api.extension JUnit Jupiter API for writing extensions.org.junit.jupiter.api.extension.support JUnit Jupiter API support for writing extensions.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.migrationsupport.conditions Extensions which provide support for conditional test execution features of JUnit 4 (e.g., the@Ignoreannotation) within JUnit Jupiter.org.junit.jupiter.migrationsupport.rules Extensions which provide (limited) support for JUnit 4 rules within JUnit Jupiter. -
-
Uses of Extension in org.junit.jupiter.api.extension
Subinterfaces of Extension in org.junit.jupiter.api.extension Modifier and Type Interface Description interfaceAfterAllCallbackAfterAllCallbackdefines the API forExtensionsthat wish to provide additional behavior to test containers once after all tests in the container have been executed.interfaceAfterEachCallbackAfterEachCallbackdefines the API forExtensionsthat wish to provide additional behavior to tests after an individual test and any user-defined teardown methods (e.g.,@AfterEachmethods) for that test have been executed.interfaceAfterTestExecutionCallbackAfterTestExecutionCallbackdefines the API forExtensionsthat wish to provide additional behavior to tests immediately after an individual test has been executed but before any user-defined teardown methods (e.g.,@AfterEachmethods) have been executed for that test.interfaceBeforeAllCallbackBeforeAllCallbackdefines the API forExtensionsthat wish to provide additional behavior to test containers once before all tests in the container have been executed.interfaceBeforeEachCallbackBeforeEachCallbackdefines the API forExtensionsthat wish to provide additional behavior to tests before an individual test and any user-defined setup methods (e.g.,@BeforeEachmethods) for that test have been executed.interfaceBeforeTestExecutionCallbackBeforeTestExecutionCallbackdefines the API forExtensionsthat wish to provide additional behavior to tests immediately before an individual test is executed but after any user-defined setup methods (e.g.,@BeforeEachmethods) have been executed for that test.interfaceExecutionConditionExecutionConditiondefines theExtensionAPI for programmatic, conditional test execution.interfaceInvocationInterceptorInvocationInterceptordefines the API forExtensionsthat wish to intercept calls to test code.interfaceLifecycleMethodExecutionExceptionHandlerLifecycleMethodExecutionExceptionHandlerdefines the API forExtensionsthat wish to handle exceptions thrown during the execution of@BeforeAll,@BeforeEach,@AfterEach, and@AfterAlllifecycle methods.interfaceParameterResolverParameterResolverdefines the API forExtensionsthat wish to dynamically resolve arguments for parameters at runtime.interfaceTestExecutionExceptionHandlerTestExecutionExceptionHandlerdefines the API forExtensionsthat wish to handle exceptions thrown during test execution.interfaceTestInstanceFactoryinterfaceTestInstancePostProcessorTestInstancePostProcessordefines the API forExtensionsthat wish to post-process test instances.interfaceTestInstancePreDestroyCallbackTestInstancePreDestroyCallbackdefines the API forExtensionsthat wish to process test instances after they have been used in tests but before they are destroyed.interfaceTestTemplateInvocationContextProviderTestTemplateInvocationContextProviderdefines the API forExtensionsthat wish to provide one or multiple contexts for the invocation of a@TestTemplatemethod.interfaceTestWatcherTestWatcherdefines the API forExtensionsthat wish to process test results.Methods in org.junit.jupiter.api.extension that return types with arguments of type Extension Modifier and Type Method Description default List<Extension>TestTemplateInvocationContext. getAdditionalExtensions()Get the additional extensions for this invocation.Class<? extends Extension>[]value()An array of one or moreExtensionclasses to register. -
Uses of Extension in org.junit.jupiter.api.extension.support
Classes in org.junit.jupiter.api.extension.support that implement Extension Modifier and Type Class Description classTypeBasedParameterResolver<T>ParameterResolveradapter which resolves a parameter based on its exact type. -
Uses of Extension in org.junit.jupiter.engine.execution
Subinterfaces of Extension in org.junit.jupiter.engine.execution Modifier and Type Interface Description interfaceAfterEachMethodAdapterFunctional interface for registering an@AfterEachmethod as a pseudo-extension.interfaceBeforeEachMethodAdapterFunctional interface for registering a@BeforeEachmethod as a pseudo-extension. -
Uses of Extension in org.junit.jupiter.engine.extension
Methods in org.junit.jupiter.engine.extension with type parameters of type Extension Modifier and Type Method Description default <E extends Extension>
List<E>ExtensionRegistry. getExtensions(Class<E> extensionType)Get allExtensionsof the specified type that are present in this registry or one of its ancestors.default <E extends Extension>
List<E>ExtensionRegistry. getReversedExtensions(Class<E> extensionType)Get allExtensionsof the specified type that are present in this registry or one of its ancestors, in reverse order.<E extends Extension>
Stream<E>ExtensionRegistry. stream(Class<E> extensionType)Stream allExtensionsof the specified type that are present in this registry or one of its ancestors.<E extends Extension>
Stream<E>MutableExtensionRegistry. stream(Class<E> extensionType)Methods in org.junit.jupiter.engine.extension with parameters of type Extension Modifier and Type Method Description voidExtensionRegistrar. registerExtension(Extension extension, Object source)Register the suppliedExtension, without checking if an extension of that type has already been registered.voidMutableExtensionRegistry. registerExtension(Extension extension, Object source)Method parameters in org.junit.jupiter.engine.extension with type arguments of type Extension Modifier and Type Method Description static MutableExtensionRegistryMutableExtensionRegistry. createRegistryFrom(MutableExtensionRegistry parentRegistry, List<Class<? extends Extension>> extensionTypes)Factory for creating and populating a new registry from a list of extension types and a parent registry. -
Uses of Extension in org.junit.jupiter.migrationsupport.conditions
Classes in org.junit.jupiter.migrationsupport.conditions that implement Extension Modifier and Type Class Description classIgnoreConditionExecutionConditionthat supports JUnit 4's@Ignoreannotation. -
Uses of Extension in org.junit.jupiter.migrationsupport.rules
Classes in org.junit.jupiter.migrationsupport.rules that implement Extension Modifier and Type Class Description classExpectedExceptionSupportThisExtensionprovides native support for theExpectedExceptionrule from JUnit 4.classExternalResourceSupportThisExtensionprovides native support for subclasses of theExternalResourcerule from JUnit 4.classVerifierSupportThisExtensionprovides native support for subclasses of theVerifierrule from JUnit 4.
-