If I am not mistaken, Junit 5 allows creation of custom method orderers so that the order in which test methods are executed can be custom but I could not find something equivalent to this in Junit 4, there seems to be ways to order tests in alphabetical order or using JVM ordering etc. but nothing that allows for custom execution. Is this something possible?
note: I am aware of the fact that fixing test order is a bad practice however I am looking into this for research, not software development.