You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

27 lines
821 B

<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="bootstrap.php"
verbose="true"
convertDeprecationsToExceptions="true"
timeoutForSmallTests="900"
timeoutForMediumTests="900"
timeoutForLargeTests="900"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>
<testsuite name="Talk App Tests">
<directory suffix="Test.php">.</directory>
</testsuite>
<coverage>
<!-- filters for code coverage -->
<include>
<directory suffix=".php">../../../spreed/appinfo</directory>
<directory suffix=".php">../../../spreed/lib</directory>
</include>
<report>
<!-- and this is where your report will be written -->
<clover outputFile="./clover.xml"/>
</report>
</coverage>
<logging>
</logging>
</phpunit>