Core/phpunit.xml
Abel Hoogeveen 5aa165d4a4 Implemented Helper Tests
As more helpers get added, more tests will get added
2016-05-27 14:38:28 +02:00

25 lines
930 B
XML

<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
bootstrap="tests/autoload.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
colors="true">
<testsuites>
<testsuite name="Core Functionality">
<directory>tests</directory>
<directory>tests/helpers</directory>
</testsuite>
</testsuites>
<logging>
<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"/>
</logging>
</phpunit>