LargeTest

@Retention(value = RetentionPolicy.RUNTIME)
@Target(value = [ElementType.METHOD, ElementType.TYPE])
public annotation LargeTest


Annotation to assign a large test size qualifier to a test. This annotation can be used at the method or class level.

Test size qualifiers are a great way to structure test code and are used to assign a test to a suite of tests that have similar run times.

Execution time: >1000ms

Large tests should be focused on testing integration of all application components. These tests fully participate in the system and may make use of all resources such as databases, file systems, and networks. As a rule of thumb, most functional UI tests are large tests.

Note: This class replaces the deprecated Android platform size qualifier android.test.suitebuilder.annotation.LargeTest and is the recommended way to annotate tests written with the AndroidX Test libraries.