зеркало из https://github.com/nextcloud/cookbook.git
23 строки
598 B
XML
23 строки
598 B
XML
<?xml version="1.0"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
bootstrap="tests/bootstrap.php"
|
|
colors="true"
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
cacheResult="true"
|
|
cacheResultFile="/tmp/phpunit.cache"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="unit">
|
|
<directory>./tests/Unit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<coverage includeUncoveredFiles="true" processUncoveredFiles="true">
|
|
<include>
|
|
<directory suffix=".php">lib</directory>
|
|
</include>
|
|
</coverage>
|
|
</phpunit>
|