Newer
Older
framework / phpunit.xml.dist
@Jim Parry Jim Parry on 6 May 2019 619 bytes Release 4.0.0-beta.3
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/_support/_bootstrap.php"
        backupGlobals="false"
        colors="true"
        convertErrorsToExceptions="true"
        convertNoticesToExceptions="true"
        convertWarningsToExceptions="true"
        stopOnError="false"
        stopOnFailure="false"
        stopOnIncomplete="false"
        stopOnSkipped="false">
    <testsuites>
        <testsuite name="app">
            <directory>./tests</directory>
        </testsuite>
    </testsuites>
    
    <php>
        <env name="app.baseURL" value="http://example.com"/>
    </php>

</phpunit>