rector/phpunit.xml
TomasVotruba 764ce4bb08 init
2017-07-15 19:01:21 +02:00

17 lines
408 B
XML

<phpunit
bootstrap="vendor/autoload.php"
colors="true"
verbose="true"
>
<!-- tests directories to run -->
<testsuite>
<directory>tests</directory>
</testsuite>
<!-- source to check coverage for -->
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>