I know this is bad practice, but it needs to be done, or I\'ll need to switch to testng. Is there a way, similar to JUnit 3\'s testSuite, to specify the order o
testng
Using junit 4.11 the new annotation @FixMethodOrder allows to set a specific order:
junit 4.11
@FixMethodOrder
@FixMethodOrder(MethodSorters.NAME_ASCENDING)