2015-03-18 18:37:35 +00:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
|
2016-05-27 14:33:12 +00:00
|
|
|
bootstrap="autoload.php"
|
2015-05-01 18:40:10 +00:00
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
stopOnError="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
stopOnIncomplete="false"
|
|
|
|
stopOnSkipped="false"
|
2016-06-04 14:17:21 +00:00
|
|
|
colors="false">
|
2015-03-18 18:37:35 +00:00
|
|
|
|
|
|
|
<testsuites>
|
2015-05-01 18:40:10 +00:00
|
|
|
<testsuite name="Core Functionality">
|
2016-06-04 14:17:21 +00:00
|
|
|
<directory>./</directory>
|
2015-03-18 18:37:35 +00:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2016-05-25 11:46:13 +00:00
|
|
|
|
|
|
|
<logging>
|
2016-05-27 14:33:12 +00:00
|
|
|
<log type="json" target="../build/phpunit/logfile.json"/>
|
|
|
|
<log type="junit" target="../build/phpunit/logfile.xml" logIncompleteSkipped="false"/>
|
|
|
|
<log type="testdox-html" target="../build/phpunit/testdox.html"/>
|
|
|
|
<log type="testdox-text" target="../build/phpunit/testdox.txt"/>
|
2016-06-04 14:17:21 +00:00
|
|
|
<log type="coverage-html" target="../build/phpunit/coverage_html" lowUpperBound="35"
|
|
|
|
highLowerBound="70"/>
|
|
|
|
<log type="coverage-clover" target="../build/phpunit/coverage.xml"/>
|
|
|
|
<log type="coverage-php" target="../build/phpunit/coverage.serialized"/>
|
|
|
|
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
|
2016-05-25 11:46:13 +00:00
|
|
|
</logging>
|
2016-06-04 14:17:21 +00:00
|
|
|
|
|
|
|
<filter>
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="false">
|
|
|
|
<directory suffix=".php">../</directory>
|
|
|
|
<exclude>
|
|
|
|
<directory suffix=".php">../vendor/</directory>
|
2016-07-23 14:32:11 +00:00
|
|
|
<directory suffix=".php">../tests/</directory>
|
2018-01-16 21:31:14 +00:00
|
|
|
<directory suffix=".php">../src/Layout/</directory>
|
|
|
|
<directory suffix=".php">../src/Config/</directory>
|
|
|
|
<directory suffix=".php">../src/Language/</directory>
|
2016-06-04 14:17:21 +00:00
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2015-03-18 18:37:35 +00:00
|
|
|
</phpunit>
|