Do JUnit tests run sequentially?
JUnit does not support ordering, therefore the tests should be able to run in any order. If you actually require dependencies between tests, consider TestNG, which supports dependencies.
Do JUnit tests run sequentially?
JUnit does not support ordering, therefore the tests should be able to run in any order. If you actually require dependencies between tests, consider TestNG, which supports dependencies.