We're trying to write instrumentationTest for our app.
For example I want to write test for authorization/registration.
However before every test I want to be unauthorized? so I need to clean all data, delete db, etc.
So is there any way to delete app or app's data before every test?
This question was asked in '13. We have come a long way since then. Android has jUnit test runner that comes with a cleanup mechanism under test orchestrator.
Check it out here https://developer.android.com/training/testing/junit-runner
Use Annotations eg:
and put your clean up code there.
Using Android studio, you can create a test configuration that first uninstalls your app before running a test.
Create a new External Tool.
You can test that this new tool works by clicking Tools->Custom Tools->"Uninstall myApp".
Step 2. Create or edit your test configuration.
Now, when you run this configuration, your app should be uninstalled first, before your tests are run.