@Retention(value=RUNTIME) @Target(value={METHOD,ANNOTATION_TYPE,TYPE}) @ExtendWith(value=MicronautLambdaJunit5Extension.class) @Factory @Inherited @Requires(condition=io.micronaut.test.condition.TestActiveCondition.class) public @interface MicronautLambdaTest
MicronautTest
and supports the same options.Modifier and Type | Optional Element and Description |
---|---|
java.lang.Class<?> |
application |
java.lang.Class<? extends io.micronaut.context.ApplicationContextBuilder>[] |
contextBuilder
The application context builder to use to construct the context.
|
java.lang.String[] |
environments |
java.lang.String[] |
packages |
java.lang.String[] |
propertySources
One or many references to classpath.
|
boolean |
rebuildContext
Whether to rebuild the application context before each test method.
|
boolean |
rollback
Whether to rollback (if possible) any data access code between each test execution.
|
boolean |
startApplication
Whether to start
EmbeddedApplication . |
boolean |
transactional
Allow disabling or enabling of automatic transaction wrapping.
|
io.micronaut.test.annotation.TransactionMode |
transactionMode
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 boolean rebuildContext
public abstract java.lang.Class<? extends io.micronaut.context.ApplicationContextBuilder>[] contextBuilder