How can I specify JUnit test dependencies?
JExample and TestNG have something like that.
I don't know how useful it is, but if you try it, please come back to tell us whether it was useful.
There's a contribution to JUnit that address this: https://github.com/junit-team/junit.contrib/tree/master/assumes
org.junit.FixMethodOrder
@FixMethodOrder(MethodSorters.NAME_ASCENDING) This goes on top of your Unit test class.
You can name your methods public void step1_methodName etc