You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
824 B
37 lines
824 B
7 months ago
|
package {
|
||
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
||
|
}
|
||
|
|
||
|
android_test {
|
||
|
name: "ManagedProvisioningTests",
|
||
|
|
||
|
libs: [
|
||
|
"android.test.runner",
|
||
|
"android.test.base",
|
||
|
"android.test.mock",
|
||
|
],
|
||
|
|
||
|
srcs: ["src/**/*.java"],
|
||
|
|
||
|
platform_apis: true,
|
||
|
certificate: "platform",
|
||
|
|
||
|
static_libs: [
|
||
|
"androidx.test.rules",
|
||
|
"mockito-target-minus-junit4",
|
||
|
"androidx.test.espresso.core",
|
||
|
"androidx.test.espresso.contrib",
|
||
|
"androidx.test.espresso.intents",
|
||
|
"truth-prebuilt",
|
||
|
"testng", // used only for assertThrows
|
||
|
"ub-uiautomator", // used for unlocking the device
|
||
|
"TestApp",
|
||
|
"ctstestrunner-axt",
|
||
|
"Harrier",
|
||
|
],
|
||
|
|
||
|
instrumentation_for: "ManagedProvisioning",
|
||
|
test_suites: ["device-tests"],
|
||
|
|
||
|
}
|