Top Description Methods
org.junit.jupiter.api.extension

public Interface TestInstancePostProcessor

extends Extension
Annotations
@FunctionalInterface
@API
status:STABLE
since:5.0
Static Imports
org.apiguardian.api.API.Status.STABLE

TestInstancePostProcessor defines the API for Extensions that wish to post-process test instances.

Common use cases include injecting dependencies into the test instance, invoking custom initialization methods on the test instance, etc.

Extensions that implement TestInstancePostProcessor must be registered at the class level.

Constructor Requirements

Consult the documentation in Extension for details on constructor requirements.

Since
5.0
See Also
postProcessTestInstance(Object, ExtensionContext), TestInstancePreDestroyCallback, TestInstanceFactory, ParameterResolver

Method Summary

Modifier and TypeMethod and Description
public void
postProcessTestInstance(Object
the instance to post-process; never null
testInstance
,
ExtensionContext
the current extension context; never null
context
)

Callback for post-processing the supplied test instance.

Method Detail

postProcessTestInstanceback to summary
public void postProcessTestInstance(Object testInstance, ExtensionContext context) throws Exception

Callback for post-processing the supplied test instance.

Note

the ExtensionContext supplied to a TestInstancePostProcessor will always return an empty java.util.Optional value from getTestInstance(). A TestInstancePostProcessor should therefore only attempt to process the supplied testInstance.

Parameters
testInstance:Object

the instance to post-process; never null

context:ExtensionContext

the current extension context; never null