-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.dist.xml
More file actions
55 lines (45 loc) · 1.72 KB
/
phpunit.dist.xml
File metadata and controls
55 lines (45 loc) · 1.72 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
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
cacheDirectory="./.cache/phpunit/"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnPhpunitDeprecations="true"
colors="true">
<php>
<!-- Set error reporting to E_ALL. -->
<ini name="error_reporting" value="32767" />
<!-- Do not limit the amount of memory tests take to run. -->
<ini name="memory_limit" value="-1" />
<env name="APP_TEST_TEMP_DIR" value="" />
</php>
<testsuites>
<testsuite name="unit">
<directory>tests/src/Unit/</directory>
</testsuite>
<testsuite name="acceptance">
<directory>tests/src/Acceptance/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>./src/</directory>
</include>
</source>
<logging>
<testdoxHtml outputFile="./reports/human/all/result/testdox.html" />
<testdoxText outputFile="./reports/human/all/result/testdox.txt" />
<junit outputFile="./reports/machine/all/result/junit.xml" />
</logging>
<coverage>
<report>
<html outputDirectory="./reports/human/all/coverage/html/" />
<xml outputDirectory="./reports/machine/all/coverage/xml" />
<clover outputFile="./reports/machine/all/coverage/clover.xml" />
<php outputFile="./reports/machine/all/coverage/php.php" />
</report>
</coverage>
</phpunit>