mirror of
https://ghproxy.net/https://github.com/fairpm/fair-plugin.git
synced 2025-09-04 10:32:01 +08:00
34 lines
1 KiB
XML
34 lines
1 KiB
XML
<?xml version="1.0"?>
|
|
<phpunit
|
|
bootstrap="tests/phpunit/bootstrap.php"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
|
beStrictAboutOutputDuringTests="true"
|
|
convertErrorsToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertDeprecationsToExceptions="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="default">
|
|
<directory suffix="Test.php">./tests/phpunit/tests/</directory>
|
|
<exclude>./tests/phpunit/tests/SampleTest.php</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
<groups>
|
|
<exclude>
|
|
<group>ms-required</group>
|
|
</exclude>
|
|
</groups>
|
|
<coverage includeUncoveredFiles="true" processUncoveredFiles="false" pathCoverage="false" cacheDirectory="./tests/phpunit/cache">
|
|
<include>
|
|
<directory suffix=".php">./inc</directory>
|
|
</include>
|
|
<report>
|
|
<text outputFile="php://stdout" showOnlySummary="true"/>
|
|
<html outputDirectory="./tests/phpunit/coverage/html/single-site"/>
|
|
<php outputFile="./tests/phpunit/coverage/php/single-site.php"/>
|
|
</report>
|
|
</coverage>
|
|
</phpunit>
|