-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
34 lines (34 loc) · 1.04 KB
/
phpunit.xml.dist
File metadata and controls
34 lines (34 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?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>