nextcloud-news/phpunit.xml

24 lines
896 B
XML
Raw Normal View History

2016-02-11 22:36:29 +01:00
<phpunit bootstrap="tests/bootstrap.php" colors="true">
2016-03-26 22:29:35 +01:00
<testsuites>
<testsuite name="unit">
2016-07-23 21:24:54 +02:00
<directory>./tests/Unit</directory>
2016-03-26 22:29:35 +01:00
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./lib/</directory>
<exclude>
<file>./lib/AppInfo/Application.php</file>
<file>./lib/Controller/JSONHttpErrorTrait.php</file>
<file>./lib/**Exception.php</file>
<file>./lib/Migration/**.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./build/report" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="./build/coverage.xml"/>
<log type="junit" target="./build/junit.xml"/>
</logging>
2015-09-20 18:18:36 +02:00
</phpunit>