mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 13:28:18 +01:00
17 lines
408 B
XML
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>
|