<phpunit
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
        bootstrap="./vendor/autoload.php"
        convertErrorsToExceptions='true'
        convertNoticesToExceptions='true'
        convertWarningsToExceptions='true'
        stopOnError="true"
        timeoutForLargeTests="60"
        timeoutForMediumTests="10"
        timeoutForSmallTests="1"
        verbose="false" >
    <php>
        <env name="INBOXROAD_API_KEY" value=""/>
        <env name="INBOXROAD_SEND_EMAIL_ENABLED" value="0"/>
        <env name="INBOXROAD_SEND_EMAIL_FROM_EMAIL" value=""/>
        <env name="INBOXROAD_SEND_EMAIL_TO_EMAIL" value=""/>
    </php>
    <testsuites>
        <testsuite name="Unit tests">
            <directory>./test/</directory>
        </testsuite>
    </testsuites>
</phpunit>