fair-plugin/phpunit.xml.dist

35 lines
1 KiB
Text
Raw Normal View History

<?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>