PHPUnit --coverage-html无效
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHPUnit --coverage-html无效相关的知识,希望对你有一定的参考价值。
我使用php 7.0并使用PHPunit执行测试用例。那些工作正常。但是当尝试使用PHPUnit 6.3.0或5.7.23使用--coverage-html选项运行PHPUnit时,它只显示可用选项而不是生成代码覆盖率报告。
我没有使用任何phpunit.xml文件,是强制性的,如果是,那么如何把我的目录。我的项目中有两个文件夹 - 一个用于lib(核心php类文件),另一个用于具有单元测试用例的测试。
答案
假设您的代码在标准目录中(例如src
代码和tests
用于测试),请使用以下phpuni.xml.dist文件
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/7.0/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
>
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src</directory>
</whitelist>
</filter>
</phpunit>
然后你可以运行phpunit
来获得没有覆盖的测试和phpunit coverage-html build
来获得覆盖测试(随意用你喜欢的任何目录名替换build
)
以上是关于PHPUnit --coverage-html无效的主要内容,如果未能解决你的问题,请参考以下文章
phpunit 抛出未捕获的异常'PHPUnit_Framework_Exception
markdown [代码覆盖率Phpunit]安装Xdebug并使用Phpunit运行代码覆盖率#xdebug #phpunit #code #coverage