You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
552 B
21 lines
552 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit colors="true">
|
|
<testsuites>
|
|
<testsuite>
|
|
<name>UnitTest</name>
|
|
<directory>tests/Unit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">src</directory>
|
|
<exclude>
|
|
<directory suffix=".php">src/V[!a-zA-Z]*</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="coverage-clover" target="clover.xml"/>
|
|
</logging>
|
|
</phpunit>
|