-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
22 lines (22 loc) · 914 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
<phpunit bootstrap="./tests/phpunitbootstrap.php" colors="true">
<testsuites>
<testsuite name="CubeObject Test Suite">
<directory>./tests/unit</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory suffix=".php">./vendor</directory>
<file>*.txt</file>
</blacklist>
</filter>
<logging>
<log type="coverage-html" target="./build/coverage" charset="UTF-8" highlight="true"/>
<log type="coverage-clover" target="./build/logs/clover.xml"/>
<log type="coverage-php" target="./build/coverage.serialized"/>
<log type="json" target="./build/logs/phpunit.json"/>
<log type="junit" target="./build/logs/junit.xml"/>
<log type="testdox-html" target="./build/docs/testdox.html"/>
<log type="testdox-text" target="./build/docs/testdox.txt"/>
</logging>
</phpunit>