1
java - How to run test methods in specific order in JUnit4? - Stack Overflow (stackoverflow.com)
natsu 積分 0

Test method 預設的執行順序沒有一定,不是照字母順序、也不是照在程式碼中出現的順序,所以可能的話應該要讓每個 test method 都能獨立測試,才不會因為執行順序的關係造成測試結果不如預期。

不過如果想讓 test method 依字母順序執行,JUnit 4.11+ 也是有 @FixMethodOrder(MethodSorters.NAME_ASCENDING) 可用。

IngramChen 積分 0

我寫了十年的 test 還沒寫過需要順序的 test case