Interface DefaultTestExecutionListenersPostProcessor
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
@Deprecated(since="3.0.0",
forRemoval=true)
public interface DefaultTestExecutionListenersPostProcessor
Deprecated, for removal: This API element is subject to removal in a future version.
Callback interface trigger from
SpringBootTestContextBootstrapper that can be
used to post-process the list of default TestExecutionListeners to be used by a test. Can be used to add or remove existing
listeners.- Since:
- 1.4.1
-
Method Summary
Modifier and TypeMethodDescriptionList<org.springframework.test.context.TestExecutionListener>postProcessDefaultTestExecutionListeners(List<org.springframework.test.context.TestExecutionListener> listeners) Deprecated, for removal: This API element is subject to removal in a future version.Post process the list of defaultlistenersto be used.
-
Method Details
-
postProcessDefaultTestExecutionListeners
List<org.springframework.test.context.TestExecutionListener> postProcessDefaultTestExecutionListeners(List<org.springframework.test.context.TestExecutionListener> listeners) Deprecated, for removal: This API element is subject to removal in a future version.Post process the list of defaultlistenersto be used.- Parameters:
listeners- the source listeners- Returns:
- the actual listeners that should be used
- Since:
- 3.0.0
-
ApplicationContextFailureProcessor