forked from milindsingh/validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
33 lines (29 loc) · 843 Bytes
/
phpunit.xml.dist
File metadata and controls
33 lines (29 loc) · 843 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="true"
processIsolation="false"
stopOnError="true"
stopOnFailure="true"
stopOnWarning="true"
bootstrap="./vendor/autoload.php"
>
<!-- Add any additional test suites you want to run here -->
<testsuites>
<testsuite name="Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<coverage>
<exclude>
<directory suffix=".php">./vendor/</directory>
<directory suffix=".php">./tests/</directory>
</exclude>
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<logging>
<testdoxHtml outputFile="build/test"/>
<text outputFile="php://stdout" />
</logging>
</phpunit>