Moved the configuration files to a dedicated folder

This commit is contained in:
Cédric Belin
2019-04-18 12:15:05 +02:00
parent 72ad2d9c84
commit 07567ba1e0
5 changed files with 7 additions and 7 deletions

18
etc/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 suffix="Test.php">../test</directory>
</testsuite>
</testsuites>
</phpunit>