Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
44 lines (40 loc) · 1.39 KB
/
Copy pathphpunit.xml
File metadata and controls
44 lines (40 loc) · 1.39 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
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
testdox="true"
cacheDirectory="tests/.phpunit/cache"
cacheResultFile="tests/.phpunit/result.cache"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
failOnDeprecation="true"
failOnRisky="true"
failOnWarning="true"
>
<coveragedisableCodeCoverageIgnore="true">
<report>
<cloveroutputFile="tests/.phpunit/clover.xml"/>
<textoutputFile="tests/.phpunit/text.txt"/>
</report>
</coverage>
<logging>
<junitoutputFile="tests/.phpunit/logging.xml"/>
</logging>
<testsuites>
<testsuitename="default">
<directory>tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directorysuffix=".php">./src</directory>
</include>
</source>
<extensions>
<bootstrapclass="RobinIngelbrecht\PHPUnitPrettyPrint\PhpUnitExtension">
<parametername="displayProfiling"value="true"/>
<parametername="displayMemory"value="true"/>
</bootstrap>
</extensions>
</phpunit>