1android_test {
2    name: "ScreenshotHelperTests",
3
4    srcs: [
5        "src/**/*.java",
6    ],
7
8    static_libs: [
9        "frameworks-base-testutils",
10        "androidx.test.runner",
11        "androidx.test.rules",
12        "androidx.test.ext.junit",
13        "mockito-target-minus-junit4",
14        "platform-test-annotations",
15    ],
16
17    libs: [
18        "android.test.runner",
19        "android.test.base",
20        "android.test.mock",
21    ],
22
23    platform_apis: true,
24    test_suites: ["device-tests"],
25
26    certificate: "platform",
27}
28
29