зеркало из https://github.com/nextcloud/forms.git
23 строки
597 B
XML
23 строки
597 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<phpunit bootstrap="./bootstrap.php"
|
|
colors="true"
|
|
convertDeprecationsToExceptions="true"
|
|
verbose="true"
|
|
timeoutForSmallTests="900"
|
|
timeoutForMediumTests="900"
|
|
timeoutForLargeTests="900">
|
|
<testsuite name="Forms app tests">
|
|
<directory>./Unit</directory>
|
|
</testsuite>
|
|
<coverage>
|
|
<!-- filters for code coverage -->
|
|
<include>
|
|
<directory suffix=".php">../lib</directory>
|
|
</include>
|
|
<report>
|
|
<!-- and this is where your report will be written -->
|
|
<clover outputFile="./clover.unit.xml"/>
|
|
</report>
|
|
</coverage>
|
|
</phpunit>
|