| <?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/Bootstrap.php" colors="true">
    <php>
        <var name="db_dsn" value="mysql:host=localhost:3306;dbname=test;host=mysql"/>
        <var name="db_username" value="root"/>
        <var name="db_password" value=""/>
    </php>
    <testsuites>
        <testsuite name="Hello World Test Suite">
            <directory>./tests/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory>./</directory>
            <exclude>
                <directory>./tests</directory>
            </exclude>
        </whitelist>
    </filter>
</phpunit>
 |