1//############################################################ 2// Car Dialer Instrumented test target. # 3//############################################################ 4// Install CarDialerAppForTesting target before running this test. 5 6package { 7 default_applicable_licenses: ["Android-Apache-2.0"], 8} 9 10android_test { 11 name: "CarDialerInstruTests", 12 13 srcs: ["src/**/*.java"], 14 15 test_suites:["device-tests"], 16 17 static_libs: [ 18 "androidx.test.ext.junit", 19 "androidx.test.runner", 20 "androidx.test.rules", 21 "androidx.test.espresso.core", 22 "androidx.test.espresso.contrib", 23 "androidx.test.espresso.intents", 24 "hilt_android_testing", 25 "mockito-target-extended", 26 ], 27 28 jni_libs: ["libstaticjvmtiagent"], 29 30 instrumentation_for: "CarDialerAppForTesting", 31} 32