2017-07-15 19:01:21 +02:00
|
|
|
<phpunit
|
2018-02-22 15:25:57 +01:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
2017-11-10 23:14:17 +01:00
|
|
|
bootstrap="tests/bootstrap.php"
|
2017-07-15 19:01:21 +02:00
|
|
|
colors="true"
|
|
|
|
verbose="true"
|
|
|
|
>
|
2018-01-04 15:22:59 +01:00
|
|
|
<testsuites>
|
2018-07-25 15:29:42 +02:00
|
|
|
<testsuite name="main">
|
2018-02-21 15:43:55 +01:00
|
|
|
<directory>packages/*/tests</directory>
|
2018-07-25 15:29:42 +02:00
|
|
|
<directory>tests</directory>
|
2018-10-17 14:27:22 +02:00
|
|
|
<exclude>packages/ContributorTools/templates/*</exclude>
|
2018-01-04 15:22:59 +01:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2018-07-25 15:29:42 +02: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 19:01:21 +02:00
|
|
|
</phpunit>
|