Interface PicocliTestFeature
- All Superinterfaces:
io.micronaut.core.naming.Described,Feature,io.micronaut.core.naming.Named,io.micronaut.core.order.Ordered,TestFeature
- All Known Implementing Classes:
PicocliJunit,PicocliKoTest,PicocliSpock
Marker interface for Picocli CLI test features.
Provides support for CLI applications by supplying test configurations and templates.
-
Field Summary
FieldsFields inherited from interface io.micronaut.core.order.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE -
Method Summary
Methods inherited from interface io.micronaut.core.naming.Described
getDescriptionMethods inherited from interface io.micronaut.projectgen.core.feature.Feature
apply, getCategory, getDescription, getFrameworkDocumentation, getName, getThirdPartyDocumentation, getTitle, isCommunity, isPreview, processSelectedFeaturesMethods inherited from interface io.micronaut.projectgen.core.feature.TestFeature
getTestFramework, isJunit, isKoTest, isKotlinTestFramework, isSpock, isVisible
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getOrder
default int getOrder()Description copied from interface:FeatureThe order of a feature controls the order in which it applies. The order of a feature is important to ensure that any previous work done by other features that may be required is done. SeeFeaturePhasefor a list of phases to choose from.- Specified by:
getOrderin interfaceFeature- Specified by:
getOrderin interfaceio.micronaut.core.order.Ordered- Specified by:
getOrderin interfaceTestFeature- Returns:
- The order of the feature
-
supports
Description copied from interface:FeatureThis method must be implemented to ensure it is only selectable for the desired application types. This method is not used for determining if a default feature should be applied.
-