phpunit没有生成coverage-xml文件

时间:2015-06-22 22:09:58

标签: phpunit

以下内容:

  

phpunit" C:\ xampp \ htdocs \ LaravelTest \ tests \ ExampleTest.php" --coverage-xml" C:\ Users \ James \ Documents \ Test Logs"

没有为我创建一个xml文件。

我也尝试过:

  

phpunit" C:\ xampp \ htdocs \ LaravelTest \ tests \ ExampleTest.php" --coverage-xml" C:\ Users \ James \ Documents \ Test Logs \ test.xml"

我出错的任何想法?它只是运行测试

语法来源https://phpunit.de/manual/current/en/textui.html

1 个答案:

答案 0 :(得分:0)

  1. 我把选项放在了错误的地方。它需要按照文档(doh)
  2. 中的描述进行phpunit
  3. --coverage-xml似乎不起作用。但--log-junit确实
  4. 以下命令有效:

      

    phpunit --log-junit“C:\ xampp \ htdocs \ LaravelTest \ tests \ ExampleTest.php”“C:\ Users \ James \ Documents \ Test Logs \ log.xml”