我正在研究我的宠物项目Pipes并尝试尽可能接近 100% 的代码覆盖率(我正在使用Coveralls)。
我面临的问题是:如何使用不同的 PHP 版本获得 100% 的代码覆盖率?截至目前,我的项目不包含特定于版本的代码,但这可能很快就会改变。
即使在针对 5.4 进行测试时不会执行生成器相关代码,我也希望获得 PHP 5.4 的 100% 代码覆盖率。
任何人都可以提供有关如何让我的覆盖率统计负责的策略或建议吗?
这是我的.travis.yml
:
language: php
php:
- 5.6
- 5.5
- 5.4
- hhvm
install:
- composer require satooshi/php-coveralls:~0.6@stable
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
- mkdir -p build/logs
script:
- phpunit --coverage-clover build/logs/clover.xml
after_success:
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php vendor/bin/coveralls -v; fi;'
这是我的phpunit.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
stopOnError="false"
stopOnIncomplete="false"
stopOnSkipped="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<!-- Add a filter to make sure we don't count venders and Tests in the coverage report -->
<filter>
<whitelist>
<directory suffix="Test.php">./src</directory>
<exclude>
<directory>./docs</directory>
<directory>./vendor</directory>
<directory>./tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>
PS:我知道代码覆盖率不是灵丹妙药。