-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
32 lines (32 loc) · 988 Bytes
/
phpunit.xml.dist
File metadata and controls
32 lines (32 loc) · 988 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
convertDeprecationsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
cacheResultFile="./tests/_output/.phpunit.result.cache"
>
<testsuites>
<testsuite name="unit">
<directory suffix=".php">tests/phpunit</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="false">
<include>
<directory suffix=".php">inc</directory>
<file>onedesign.php</file>
<file>uninstall.php</file>
</include>
<report>
<clover outputFile="tests/_output/php-coverage.xml" />
<html outputDirectory="tests/_output/html" />
</report>
</coverage>
</phpunit>