1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2024-07-27 07:28:48 +02:00
Nextcloud-News/phpunit.xml
Sean Molenaar b4fa772bc5 Remove V1 item API
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
2021-02-13 13:22:57 +01:00

32 lines
1.1 KiB
XML

<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" colors="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd">
<testsuites>
<testsuite name="unit">
<directory>./tests/Unit</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./lib/</directory>
</include>
<exclude>
<file>./lib/AppInfo/Application.php</file>
<file>./lib/Controller/JSONHttpErrorTrait.php</file>
<directory suffix=".php">./lib/*/Exceptions</directory>
<directory suffix=".php">./lib/Migration</directory>
<file>./lib/Db/FeedType.php</file>
<file>./lib/Db/IAPI.php</file>
</exclude>
<report>
<clover outputFile="./build/coverage.xml"/>
<html outputDirectory="./build/report" lowUpperBound="35" highLowerBound="70"/>
</report>
</coverage>
<logging>
<junit outputFile="./build/junit.xml"/>
</logging>
</phpunit>