Steps:
- Setup Android project with cucumber android - create several tests
- Enable Android Test Orchestrator + set clear package data after each test to true (I followed setup from cukeulator)
- Run tests using adb and android test orchestrator (hint: https://developer.android.com/training/testing/junit-runner#ato-command-line)
- Pull test reports from device
Result:
4. Report contains only the last test
Expected:
4. Report should contain all tests
The reason seems to be quite straightforward - package data is deleted after each test by test orchestrator. I tried to setup another locations for the reports, but I can only write to external storage belonging to the package. Any idea how to workaround that?
Steps:
Result:
4. Report contains only the last test
Expected:
4. Report should contain all tests
The reason seems to be quite straightforward - package data is deleted after each test by test orchestrator. I tried to setup another locations for the reports, but I can only write to external storage belonging to the package. Any idea how to workaround that?