Application/tests/phpunit.xml

42 lines
1.7 KiB
XML

<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
bootstrap="autoload.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
colors="false">
<testsuites>
<testsuite name="Application Suite">
<directory>./</directory>
</testsuite>
</testsuites>
<logging>
<log type="json" target="../build/logs/logfile.json"/>
<log type="junit" target="../build/logs/logfile.xml" logIncompleteSkipped="false"/>
<log type="testdox-html" target="../build/logs/testdox.html"/>
<log type="testdox-text" target="../build/logs/testdox.txt"/>
<log type="coverage-html" target="../build/logs/coverage_html" lowUpperBound="35"
highLowerBound="70"/>
<log type="coverage-clover" target="../build/logs/clover.xml"/>
<log type="coverage-php" target="../build/logs/coverage.serialized"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">../application</directory>
<exclude>
<directory suffix=".php">../vendor/</directory>
<directory suffix=".php">../application/Config</directory>
<directory suffix=".php">../application/Language</directory>
<directory suffix=".php">../application/Views</directory>
<file>../application/bootstrap.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>