Moved the PHPUnit settings

This commit is contained in:
Cédric Belin
2019-04-11 22:21:34 +02:00
parent 4408368977
commit 605f47177a
2 changed files with 5 additions and 5 deletions

18
test/phpunit.xml Normal file
View File

@ -0,0 +1,18 @@
<?xml version="1.0"?>
<phpunit bootstrap="../vendor/autoload.php" cacheResult="false">
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">../src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="../var/coverage.xml"/>
</logging>
<testsuites>
<testsuite name="all">
<directory>../test</directory>
</testsuite>
</testsuites>
</phpunit>