blob: a04a13b9de89a036d08c07a32068a3eb2e2b092c (
plain)
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
|
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.4/phpunit.xsd"
colors="true"
backupGlobals="false"
bootstrap="../vendor/autoload.php"
stderr="true"
>
<filter>
<whitelist>
<directory>../src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="../build/coverage/html/"/>
<log type="coverage-clover" target="../build/logs/clover.xml"/>
</logging>
<testsuites>
<testsuite name="Unit tests">
<directory suffix=".php">../test/</directory>
</testsuite>
</testsuites>
</phpunit>
|