22 lines
564 B
XML
22 lines
564 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit bootstrap="vendor/autoload.php"
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
verbose="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false">
|
|
<testsuites>
|
|
<testsuite name="All tests">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<groups>
|
|
<exclude>
|
|
<group>ignore</group>
|
|
</exclude>
|
|
</groups>
|
|
</phpunit>
|