public
abstract
@interface
SmallTest
implements
Annotation
android.support.test.filters.SmallTest
Annotation to assign a small test size qualifier to a test. This annotation can be used at a
method or class level.
Test size qualifiers are a great way to structure test code and are used to assign a test to a
test suite of similar run time.
Execution time: <200ms
Small tests should be run very frequently. Focused on units of code to verify specific logical
conditions. These tests should runs in an isolated environment and use mock objects for external
dependencies. Resource access (such as file system, network, or databases) are not permitted.
Tests that interact with hardware, make binder calls, or that facilitate android instrumentation
should not use this annotation.
Note: This class replaces the deprecated Android platform size qualifier
android.test.suitebuilder.annotation.SmallTest and is the recommended way to annotate tests
written with the Android Testing Support Library.
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-04-11 UTC.
[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"Missing the information I need"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"Too complicated / too many steps"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"Out of date"
},{
"type": "thumb-down",
"id": "samplesCodeIssue",
"label":"Samples / code issue"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"Other"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"Easy to understand"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"Solved my problem"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"Other"
}]
{"lastModified": "Last updated 2024-04-11 UTC."}
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-04-11 UTC."]]