I've got Robolectric test suite for my app.
As I understand, by-default Robolectric runs tests in alphabetical order.
I have tests
testA()
testB()
This tests need to run in reverse order, e.g. testB() changes tested activity state to whatever testA() needs.
How do I specify order in which tests must be ran?
Renaming tests by-hand is no good.