forked from ADCI/full-name-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
24 lines (24 loc) · 793 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8" ?>
<phpunit
colors="true"
bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="Full Name Parser tests">
<directory>tests</directory>
</testsuite>
</testsuites>
<!-- Filter for coverage reports. -->
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<!-- By definition test classes have no tests. -->
<exclude>
<directory suffix="Test.php">./src</directory>
<directory suffix="TestBase.php">./src</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="clover.xml"/>
</logging>
</phpunit>