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.
32 lines
850 B
32 lines
850 B
//############################################################
|
|
// Car Dialer Instrumented test target. #
|
|
//############################################################
|
|
// Install CarDialerAppForTesting target before running this test.
|
|
|
|
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
android_test {
|
|
name: "CarDialerInstruTests",
|
|
|
|
srcs: ["src/**/*.java"],
|
|
|
|
test_suites:["device-tests"],
|
|
|
|
static_libs: [
|
|
"androidx.test.ext.junit",
|
|
"androidx.test.runner",
|
|
"androidx.test.rules",
|
|
"androidx.test.espresso.core",
|
|
"androidx.test.espresso.contrib",
|
|
"androidx.test.espresso.intents",
|
|
"hilt_android_testing",
|
|
"mockito-target-extended",
|
|
],
|
|
|
|
jni_libs: ["libstaticjvmtiagent"],
|
|
|
|
instrumentation_for: "CarDialerAppForTesting",
|
|
}
|