rector/phpunit.xml

29 lines
869 B
XML
Raw Normal View History

2017-07-15 17:01:21 +00:00
<phpunit
2018-02-22 14:25:57 +00:00
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
2017-11-10 22:14:17 +00:00
bootstrap="tests/bootstrap.php"
2017-07-15 17:01:21 +00:00
colors="true"
verbose="true"
>
<php>
<const name="RECTOR_REPOSITORY" value="true"/>
</php>
<testsuites>
2018-07-25 13:29:42 +00:00
<testsuite name="main">
2018-02-21 14:43:55 +00:00
<directory>packages/*/tests</directory>
2018-07-25 13:29:42 +00:00
<directory>tests</directory>
<exclude>packages/ContributorTools/templates/*</exclude>
</testsuite>
</testsuites>
2018-07-25 13:29:42 +00:00
<filter>
<whitelist addUncoveredFilesFromWhitelist="false">
<directory suffix="*.php">packages/*/src</directory>
<directory>src</directory>
<exclude>
<directory>../tests/**/*Source/**</directory>
</exclude>
</whitelist>
</filter>
2017-07-15 17:01:21 +00:00
</phpunit>