22 lines
538 B
XML
22 lines
538 B
XML
<phpunit
|
|
cacheResultFile="/tmp/phpunit-corelibs-composer.result.cache"
|
|
colors="true"
|
|
verbose="false"
|
|
convertDeprecationsToExceptions="true"
|
|
bootstrap="test/phpunit/bootstrap.php"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="deploy">
|
|
<directory>test/phpunit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<coverage processUncoveredFiles="true">
|
|
<include>
|
|
<directory suffix=".php">./src</directory>
|
|
</include>
|
|
<!-- <report>
|
|
<html outputDirectory="build/coverage-report"/>
|
|
</report> -->
|
|
</coverage>
|
|
</phpunit>
|