Annotation Interface EnabledIf
@EnabledIf
is used to signal that the annotated test class or test
method is enabled and should be executed if the supplied
expression()
evaluates to true
.
When applied at the class level, all test methods within that class are automatically enabled by default as well.
For basic examples, see the Javadoc for expression()
.
This annotation may be used as a meta-annotation to create
custom composed annotations. For example, a custom
@EnabledOnMac
annotation can be created as follows.
@Target({ElementType.TYPE, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @EnabledIf( expression = "#{systemProperties['os.name'].toLowerCase().contains('mac')}", reason = "Enabled on Mac OS" ) public @interface EnabledOnMac {}
Please note that @EnabledOnMac
is meant only as an example of what
is possible. If you have that exact use case, please use the built-in
@EnabledOnOs(MAC)
support
in JUnit Jupiter.
Since JUnit 5.7, JUnit Jupiter also has a condition annotation named
@EnabledIf
. Thus, if you
wish to use Spring's @EnabledIf
support make sure you import the
annotation type from the correct package.
- Since:
- 5.0
- Author:
- Sam Brannen
- See Also:
-
SpringExtension
DisabledIf
Disabled
EnabledIf
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionThe expression that will be evaluated to determine if the annotated test class or test method is enabled.boolean
Whether theApplicationContext
associated with the current test should be eagerly loaded in order to evaluate theexpression()
.The reason this test is enabled.
-
Element Details
-
value
- See Also:
- Default:
- ""
-
expression
The expression that will be evaluated to determine if the annotated test class or test method is enabled.If the expression evaluates to
Boolean.TRUE
or aString
equal to"true"
(ignoring case), the test will be enabled.Expressions can be any of the following.
- Spring Expression Language (SpEL) expression — for example:
@EnabledIf("#{systemProperties['os.name'].toLowerCase().contains('mac')}")
- Placeholder for a property available in the Spring
Environment
— for example:@EnabledIf("${smoke.tests.enabled}")
- Text literal — for example:
@EnabledIf("true")
Note, however, that a text literal which is not the result of dynamic resolution of a property placeholder is of zero practical value since
@EnabledIf("false")
is equivalent to@Disabled
and@EnabledIf("true")
is logically meaningless.- See Also:
- Default:
- ""
- Spring Expression Language (SpEL) expression — for example:
-
reason
String reasonThe reason this test is enabled.- See Also:
- Default:
- ""
-
loadContext
boolean loadContextWhether theApplicationContext
associated with the current test should be eagerly loaded in order to evaluate theexpression()
.Defaults to
false
so that test application contexts are not eagerly loaded unnecessarily. If an expression is based solely on system properties or environment variables or does not interact with beans in the test's application context, there is no need to load the context prematurely since doing so would be a waste of time if the test ends up being disabled.- See Also:
- Default:
- false
-