@Target(value=TYPE)
public @interface CustomTestApplication
This annotation is useful for creating an application that can be used with instrumentation tests in gradle, since every instrumentation test must share the same application type.
This annotation cannot be used within the same build as CustomBaseTestApplication
,
which is used to set the base application type for a single test.
Modifier and Type | Required Element and Description |
---|---|
java.lang.Class<?> |
value
Returns the base
Application class. |