среда, 13 июня 2018 г.
Add KV data to JUnit test (console run)
adb shell am instrument -w -e class com.example.developer.appname.SomeTests#testName -e key1 param1 -e key2 param2 com.example.developer.appname.test/android.support.test.runner.AndroidJUnitRunner
Spaces and some other characters is not supported in key or value
in android test use InstrumentationRegistry.getArguments().get(key)
Spaces and some other characters is not supported in key or value
in android test use InstrumentationRegistry.getArguments().get(key)
Run anroid JUnit test with android JUnit runner from console
adb shell am instrument -w -e class com.example.developer.appname.SomeTests#testName com.example.developer.appname.test/android.support.test.runner.AndroidJUnitRunner
Подписаться на:
Сообщения (Atom)
Git hooks
Original info: https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks My goal: Validate commit message and deny commit if a comment di...

-
Get global device settings by adb (tested on API 25) adb shell settings list global for custom setting (example: get current bluetooth ...
-
Get secure device settings by adb (tested on API 25) adb shell settings list secure for custom setting (example: get current mock_locat...