phpunit.xml 514 Bytes
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
     colors="true"
     convertErrorsToExceptions="true"
     convertNoticesToExceptions="true"
     convertWarningsToExceptions="true"

     processIsolation="false"
     stopOnError="false"
     stopOnFailure="false"
     stopOnIncomplete="false"
     stopOnSkipped="false"

     strict="false"
     verbose="false"
>
    <testsuites>
        <testsuite name="AllTests">
            <directory>./tests/</directory>
        </testsuite>
    </testsuites>
</phpunit>