io.micronaut.test.extensions.junit5.annotation.MicronautTest, etc)
@Retention(value=RUNTIME)
 @Target(value={METHOD,ANNOTATION_TYPE,TYPE})
 @ExtendWith(value=MicronautJunit5ExtensionStub.class)
 @Factory
 @Inherited
 @Requires(condition=TestActiveCondition.class)
 @Deprecated
public @interface MicronautTest
| Modifier and Type | Optional Element and Description | 
|---|---|
| java.lang.Class<?> | applicationDeprecated.  | 
| java.lang.Class<? extends io.micronaut.context.ApplicationContextBuilder>[] | contextBuilderDeprecated.  The application context builder to use to construct the context. | 
| java.lang.String[] | environmentsDeprecated.  | 
| java.lang.String[] | packagesDeprecated.  | 
| java.lang.String[] | propertySourcesDeprecated.  One or many references to classpath. | 
| boolean | rebuildContextDeprecated.  Whether to rebuild the application context before each test method. | 
| boolean | rollbackDeprecated.  Whether to rollback (if possible) any data access code between each test execution. | 
| boolean | startApplicationDeprecated.  Whether to start  EmbeddedApplication. | 
| boolean | transactionalDeprecated.  Allow disabling or enabling of automatic transaction wrapping. | 
| TransactionMode | transactionModeDeprecated.  The transaction mode describing how transactions should be handled for each test. | 
public abstract java.lang.Class<?> application
public abstract java.lang.String[] environments
public abstract java.lang.String[] packages
public abstract java.lang.String[] propertySources
public abstract boolean rollback
public abstract boolean transactional
public abstract TransactionMode transactionMode
public abstract boolean rebuildContext