Package groovy.junit6.plugin
Class ExpectedToFailExtension
java.lang.Object
groovy.junit6.plugin.ExpectedToFailExtension
- All Implemented Interfaces:
Extension,InvocationInterceptor,TestInstantiationAwareExtension
JUnit 5
InvocationInterceptor backing the ExpectedToFail
annotation. Inverts a test's pass/fail outcome with optional exception-type
and message-substring filters.
Composes with ForkedJvm in either declaration order via explicit
coordination through ExtensionContext.Store and a child-JVM system
property — not via brittle reliance on annotation iteration order.
- Since:
- 6.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.junit.jupiter.api.extension.InvocationInterceptor
InvocationInterceptor.Invocation<T extends Object>Nested classes/interfaces inherited from interface org.junit.jupiter.api.extension.TestInstantiationAwareExtension
TestInstantiationAwareExtension.ExtensionContextScope -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringSystem property set on the child JVM's command line byForkedJvmExtensionwhen the parent's@ExpectedToFailhas claimed the inversion. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidinterceptTestMethod(InvocationInterceptor.Invocation<Void> invocation, ReflectiveInvocationContext<Method> invocationContext, ExtensionContext extensionContext) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.junit.jupiter.api.extension.InvocationInterceptor
interceptAfterAllMethod, interceptAfterEachMethod, interceptBeforeAllMethod, interceptBeforeEachMethod, interceptDynamicTest, interceptTestClassConstructor, interceptTestFactoryMethod, interceptTestTemplateMethodMethods inherited from interface org.junit.jupiter.api.extension.TestInstantiationAwareExtension
getTestInstantiationExtensionContextScope
-
Field Details
-
DEFERRED_TO_PARENT_PROP
System property set on the child JVM's command line byForkedJvmExtensionwhen the parent's@ExpectedToFailhas claimed the inversion. The child's@ExpectedToFailinterceptor checks this property and passes through honestly so the parent can observe the propagated outcome.- See Also:
-
-
Constructor Details
-
ExpectedToFailExtension
public ExpectedToFailExtension()
-
-
Method Details
-
interceptTestMethod
public void interceptTestMethod(InvocationInterceptor.Invocation<Void> invocation, ReflectiveInvocationContext<Method> invocationContext, ExtensionContext extensionContext) throws Throwable - Specified by:
interceptTestMethodin interfaceInvocationInterceptor- Throws:
Throwable
-