https://habrahabr.ru/company/avito/blog/351618/
Spock and Android (pdf)
https://medium.com/mercari-engineering/android-device-farm-at-mercari-3197237df0e1
Testing asynchronous RxJava code using Mockito
Using Espresso and UiAutomator
Android task manager or system dialog
[code language=”java”]
Intent closeDialog = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
sendBroadcast(closeDialog);
[/code]
[code language=”java”]
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
Log.e("Focus debug", "Focus changed !");
if (!hasFocus) {
Log.e("Focus debug", "Lost focus !");
Intent closeDialog = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
sendBroadcast(closeDialog);
}
}
[/code]