-
Notifications
You must be signed in to change notification settings - Fork 24
/
phpunit.xml.dist
27 lines (24 loc) · 935 Bytes
/
phpunit.xml.dist
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
<?xml version="1.0"?>
<phpunit bootstrap="tests/bootstrap.php" colors="true" verbose="true">
<testsuites>
<testsuite name="DMS Meetup API Client">
<directory>tests/DMS</directory>
<directory>tests/Functional</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/DMS</directory>
</whitelist>
<blacklist>
<directory>tests</directory>
<directory>vendor</directory>
<directory>bin</directory>
</blacklist>
</filter>
<logging>
<log type="coverage-html" target="tests/_reports/coverage/" charset="UTF-8" yui="true" highlight="false" lowUpperBound="35" highLowerBound="70"/>
<log type="testdox-text" target="tests/_reports/testdox/tests.txt"/>
<log type="testdox-html" target="tests/_reports/testdox/tests.html"/>
</logging>
</phpunit>