-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
39 lines (39 loc) · 1.13 KB
/
phpunit.xml.dist
File metadata and controls
39 lines (39 loc) · 1.13 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
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="tests/bootstrap.php"
displayDetailsOnPhpunitDeprecations="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnTestsThatTriggerErrors="true"
failOnNotice="true"
failOnWarning="true"
failOnDeprecation="true"
failOnPhpunitDeprecation="true"
processIsolation="false"
backupGlobals="false"
stopOnFailure="false"
colors="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
>
<source>
<include>
<directory>./src</directory>
</include>
</source>
<coverage>
<report>
<clover outputFile="coverage/coverage.xml"/>
<html outputDirectory="coverage" lowUpperBound="35" highLowerBound="70"/>
</report>
</coverage>
<testsuites>
<testsuite name="Grphp Test Suite">
<directory suffix="Test.php">tests/Unit</directory>
</testsuite>
</testsuites>
<logging>
<junit outputFile="coverage/junit.xml"/>
</logging>
</phpunit>