-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
58 lines (53 loc) · 1.83 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
58 lines (53 loc) · 1.83 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
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
bootstrap="Test/bootstrap.php"
colors="true"
testdox="true"
cacheDirectory=".phpunit.cache"
failOnWarning="false"
failOnDeprecation="false"
failOnNotice="false">
<testsuites>
<testsuite name="unit">
<directory>Test/Unit</directory>
</testsuite>
</testsuites>
<!-- <source>-->
<!-- <include>-->
<!-- <directory suffix=".php">.</directory>-->
<!-- </include>-->
<!-- <exclude>-->
<!-- <directory>vendor</directory>-->
<!-- <directory>Test</directory>-->
<!-- <directory>build</directory>-->
<!-- <file>registration.php</file>-->
<!-- </exclude>-->
<!-- </source>-->
<!-- <coverage>-->
<!-- <report>-->
<!-- <clover outputFile="build/coverage/clover.xml"/>-->
<!-- <html outputDirectory="build/coverage/html"/>-->
<!-- <xml outputDirectory="build/coverage/coverage-xml"/>-->
<!-- </report>-->
<!-- </coverage>-->
<coverage>
<include>
<directory suffix=".php">.</directory>
</include>
<exclude>
<directory>vendor</directory>
<directory>Test</directory>
<directory>build</directory>
<file>registration.php</file>
</exclude>
<report>
<clover outputFile="build/coverage/clover.xml"/>
<html outputDirectory="build/coverage/html"/>
<xml outputDirectory="build/coverage/coverage-xml"/>
</report>
</coverage>
<logging>
<junit outputFile="build/coverage/junit.xml"/>
</logging>
</phpunit>