Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 12-Dec-2023 | - | ||||
src/com/android/car/dialer/integration/ | H | 12-Dec-2023 | - | 1,502 | 1,043 | |
Android.bp | H A D | 12-Dec-2023 | 984 | 38 | 28 | |
AndroidManifest.xml | H A D | 12-Dec-2023 | 1.3 KiB | 34 | 15 | |
AndroidTest.xml | H A D | 12-Dec-2023 | 2.1 KiB | 42 | 19 | |
readme.md | H A D | 12-Dec-2023 | 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