data_request/tests/unit/phpunit.xml
Arthur Schiwon d10183c76c
add unit tests
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2018-06-14 14:20:16 +02:00

24 lines
672 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="bootstrap.php"
strict="true"
verbose="true"
timeoutForSmallTests="900"
timeoutForMediumTests="900"
timeoutForLargeTests="900"
>
<testsuite name='Data Request App Tests'>
<directory suffix='Test.php'>.</directory>
</testsuite>
<!-- filters for code coverage -->
<filter>
<whitelist>
<directory suffix=".php">../../../data_request/appinfo</directory>
<directory suffix=".php">../../../data_request/lib</directory>
</whitelist>
</filter>
<logging>
<!-- and this is where your report will be written -->
<log type="coverage-clover" target="./clover.xml"/>
</logging>
</phpunit>