-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpunit.xml
More file actions
34 lines (34 loc) · 1.36 KB
/
phpunit.xml
File metadata and controls
34 lines (34 loc) · 1.36 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" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="phpunit-bootstrap.php"
colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
processIsolation="false"
failOnWarning="true"
cacheResult="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">./wordpress-develop/src/wp-content/plugins/sil-dictionary-webonary/src</directory>
<directory suffix=".php">./test-php/src/Mocks</directory>
</include>
<report>
<clover outputFile="test-results/clover.xml"/>
<html outputDirectory="./test-results" lowUpperBound="35" highLowerBound="70"/>
<text outputFile="test-results/coverage.txt" showUncoveredFiles="true"/>
</report>
</coverage>
<php>
<ini name="error_reporting" value="32767"/>
<ini name="memory_limit" value="-1"/>
<ini name="xdebug.mode" value="coverage,debug"/>
</php>
<testsuites>
<testsuite name="webonary-tests">
<directory suffix="Test.php">test-php/src</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>