I cannot directly answer whether jUnit will run them in parallel or not, but theoretically it does not matter. The only thing you should keep in mind is the execution sequence that you can bet on, for example
- Customization
- test execution
- dismantling
This should be sufficient, since each individual test should be completely independent of each other. If your tests depend on the order that they run, or they run in parallel, then you probably have some incorrect dependencies.
Juri source share