Robotium. In the suite of tests each next test is affected by the previous test
问题 I have multiple UI tests. When I run a single test, everything is OK. But if I run a batch of them (as a part of CI build) test fail, because tests that go first change the state of the application, and the next tests are affected by those changes. (Since the app is not getting killed). I tried getActivity().finish() in tearDown() . Tried solo.finalize() which does the same actually. Is there a way to have a fresh app at the beginning of each test run? (Using Robotium). And is there a way to