美文网首页
PHPUnit 使用随机执行顺序发现更多问题

PHPUnit 使用随机执行顺序发现更多问题

作者: forks1990 | 来源:发表于2021-12-10 14:32 被阅读0次

    修改 phpunit.xml 配置文件:

    <phpunit bootstrap="./tests/bootstrap.php" colors="true" executionOrder="random"                    
      2          resolveDependencies="true">
    
    

    phpunit 不再按照测试方法的定义顺序执行,可以避免测试程序和执行顺序发生耦合。为了便于复现错误,phpunit 运行时会显示 random seed:

    PHPUnit 9.5.10 by Sebastian Bergmann and contributors.
    
    Random Seed:   1638957459
    
    Testing 
    ... 
    

    使用命令行参数:–random-order-seed 1638957459 指定 seed,复现错误。

    相关文章

      网友评论

          本文标题:PHPUnit 使用随机执行顺序发现更多问题

          本文链接:https://www.haomeiwen.com/subject/pmbtfrtx.html