When testing in junit, I like to organize my various tests into files depending on what is being tested.
Although it is bad practice to run unit tests in a set order, it would be rather convenient for my purposes.
I know how to run tests in order in a given file, but I would like to be able to choose the order in which my files are run.
Lets say I have two files: fooTest.java and barTest.java.
How would I specify the order in which these get executed?
All help is appreciated.