mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 21:38:22 +01:00
27 lines
802 B
XML
27 lines
802 B
XML
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
bootstrap="tests/bootstrap.php"
|
|
colors="true"
|
|
verbose="true"
|
|
>
|
|
<php>
|
|
<const name="RECTOR_REPOSITORY" value="true"/>
|
|
</php>
|
|
<testsuites>
|
|
<testsuite name="main">
|
|
<directory>rules/*/tests</directory>
|
|
<directory>packages/*/tests</directory>
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="false">
|
|
<directory suffix=".php">rules/*/src</directory>
|
|
<directory suffix=".php">packages/*/src</directory>
|
|
<directory>src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|