mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 05:48:21 +01:00
19 lines
450 B
XML
19 lines
450 B
XML
<phpunit
|
|
bootstrap="vendor/autoload.php"
|
|
colors="true"
|
|
verbose="true"
|
|
>
|
|
<!-- tests directories to run -->
|
|
<testsuite>
|
|
<directory>packages/*/tests</directory>
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
<!-- source to check coverage for -->
|
|
<filter>
|
|
<whitelist>
|
|
<directory>packages/*/src</directory>
|
|
<directory>src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|