Is there a way to set test running order in android? I use Espresso framework and need to test a lot of activities and transitions between them. I want to write differen
You can add annotation as test runner fixture as shown here:
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
just above class name