* Add whitelist to phpunit.xml

This commit is contained in:
RobThree
2018-06-05 23:05:08 +02:00
parent e4ec94e14d
commit 4f2364fef4
+10 -5
View File
@@ -7,9 +7,14 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./lib</directory>
</whitelist>
</filter>
</phpunit>