2017-10-01 11:31:31 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
|
|
|
|
<!--printerClass="PHPUnit_Util_TestDox_ResultPrinter_HTML"-->
|
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd"
|
|
|
|
backupGlobals="false"
|
2017-10-01 12:16:15 -07:00
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
2017-10-01 11:31:31 -07:00
|
|
|
colors="true"
|
|
|
|
bootstrap="vendor/autoload.php"
|
|
|
|
>
|
|
|
|
<php>
|
|
|
|
<ini name="error_reporting" value="-1" />
|
|
|
|
</php>
|
|
|
|
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Project Test Suite">
|
|
|
|
<directory>tests</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
|
|
|
<directory>src</directory>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
</phpunit>
|