mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2025-03-18 00:15:42 +01:00
23 lines
844 B
XML
23 lines
844 B
XML
<phpunit bootstrap="tests/bootstrap.php" colors="true">
|
|
<testsuites>
|
|
<testsuite name="unit">
|
|
<directory>./tests/Unit</directory>
|
|
</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>
|
|
</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>
|
|
</phpunit>
|