WahdanZ / SpockAdb

Spock Adb Plugin Helps you to have full control of your project
Apache License 2.0
108 stars 6 forks source link

Adds an option to test process death. #12

Closed mgoyanes closed 4 years ago

mgoyanes commented 4 years ago

Adds an option to test process death.

Process death enables us to test if the app recovers correctly when the OS kills the app to reclaim resources. The test consists of sending the app to the background if it is in the foreground, kill the app, and then relaunch it. At this point, onCreate is called with savedInstanceState not null.

Adds a method to check if the app is in the foreground.

Rename "Kill App" to "Force Kill App"