Package org.apache.camel.quarkus.test
Annotation Interface EnabledIf
@Target({TYPE,METHOD})
@Retention(RUNTIME)
@Documented
@ExtendWith(EnabledIfCondition.class)
public @interface EnabledIf
@EnabledIfProperty is used to signal that the annotated test
class or test method is only enabled if the value of the specified
supplier class(es) return true.-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionClass<? extends BooleanSupplier>[]Only include this build step if the given supplier class(es) returntrue.
-
Element Details
-
value
Class<? extends BooleanSupplier>[] valueOnly include this build step if the given supplier class(es) returntrue.- Returns:
- the supplier class array
- Default:
{}
-