-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
19 lines (19 loc) · 501 Bytes
/
Copy pathphpunit.xml.dist
File metadata and controls
19 lines (19 loc) · 501 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="true"
bootstrap="vendor/autoload.php"
>
<testsuites>
<testsuite name="Test Suite">
<directory suffix="Test.php">test</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<logging>
<testdoxXml outputFile="coverage.xml"/>
</logging>
</phpunit>