<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
    backupStaticAttributes="false"
    colors="true"
    convertErrorsToExceptions="true"
    convertNoticesToExceptions="true"
    convertWarningsToExceptions="true"
    processIsolation="false"
    stopOnFailure="false"
    syntaxCheck="false"
    bootstrap="tests/bootstrap.php"
    >
    <php>
        <!-- <server name="CLIENT_ID" value="YOUR_CLIENT_ID" /> -->
        <!-- <server name="API_KEY" value="YOUR_API_KEY" /> -->
    </php>
    <testsuites>
        <testsuite name="DigitalOcean Test Suite">
            <directory>./tests/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory>./src/DigitalOcean/</directory>
        </whitelist>
    </filter>
</phpunit>