Maven Surefire plugin: what is meaning of filesystem in runOrder?

前端 未结 1 1801
死守一世寂寞
死守一世寂寞 2021-01-14 02:34

I wanted to know if my integration tests will run in specific order and looked at the maven-failsafe-plugin documentation, which is

相关标签:
1条回答
  • 2021-01-14 03:04

    When you list files in a directory most tools show them in alphabetical order, but their real "default" order is implementation specific.

    You can use ls -U to show that order on linux.

    from a ls manpage:

    -U     do not sort; list entries in directory order
    
    0 讨论(0)
提交回复
热议问题