based on Does Maven Surefire execute test cases sequentially by default?, I know that the surefire execute test cases sequentially, in other words, One by One.
I want to know which test cases executed first and which next, Through output information of surefire, I find that the order maybe random, for example:
- test
boyTest.java
subdir
- girlTest.java
- parentTest.java the test directory has three test case: and the testcase execute order is girlTest.java, parentTest.java,boyTest.java
and So I want to make sure that whether the order that testCase executed is
random