Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/com/android/car/dialer/integration/ | 03-May-2024 | - | 387 | 231 | ||
Android.bp | D | 03-May-2024 | 850 | 32 | 24 | |
AndroidManifest.xml | D | 03-May-2024 | 1.2 KiB | 31 | 13 | |
readme.md | D | 03-May-2024 | 763 | 24 | 16 |
readme.md
1Instrumented test suite for CarDialerApp using AndroidJUnitRunner. 2 3``` 41. Use atest 5$ atest CarDialerInstruTests 6 7If the test is new 8$ atest CarDialerInstruTests --rebuild-module-info 9 10 112. Manually install and run the tests 12 13Run on local machine (hawk) 14$ mma && croot 15$ adb install -r out/target/product/hawk/testcases/CarDialerInstruTests/arm64/CarDialerInstruTests.apk 16$ adb shell am instrument -w com.android.car.dialer.tests.instrumentation/androidx.test.runner.AndroidJUnitRunner 17 18Run on emulator (gcar_hl_emu_x86) 19$ mma && croot 20$ adb install -r out/target/product/generic_x86/testcases/CarDialerInstruTests/x86/CarDialerInstruTests.apk 21$ adb shell am instrument -w com.android.car.dialer.tests.instrumentation/androidx.test.runner.AndroidJUnitRunner 22 23``` 24