35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.3/phpunit.xsd"
|
|
bootstrap="tests/bootstrap.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="false"
|
|
convertWarningsToExceptions="false"
|
|
strict="false"
|
|
verbose="false">
|
|
|
|
<testsuites>
|
|
<testsuite name="all-tests">
|
|
<directory>tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<logging>
|
|
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
|
<log type="coverage-php" target="build/logs/coverage.cov"/>
|
|
<log type="coverage-text" target="build/logs/coverage.txt" showUncoveredFiles="false"/>
|
|
<log type="coverage-html" target="test/reports/coverage/" showUncoveredFiles="true"/>
|
|
<log type="junit" target="test/reports/junit.xml" logIncompleteSkipped="false"/>
|
|
</logging>
|
|
|
|
<filter>
|
|
<blacklist>
|
|
<directory suffix=".php">vendor/</directory>
|
|
</blacklist>
|
|
<whitelist>
|
|
<directory suffix=".php">src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
</phpunit>
|