<?xml version="1.0" encoding="UTF-8"?>

<phpunit bootstrap = "vendor/autoload.php"
         backupGlobals               = "false"
         backupStaticAttributes      = "false"
         colors                      = "true"
         convertErrorsToExceptions   = "true"
         convertNoticesToExceptions  = "true"
         convertWarningsToExceptions = "true"
         processIsolation            = "false"
         stopOnFailure               = "false">

    <testsuites>
        <testsuite name="Alma PHP Client Unit Test Suite">
            <directory>tests/unit</directory>
        </testsuite>
    </testsuites>
    <testsuites>
        <testsuite name="Alma PHP Client Integration Test Suite">
            <directory>tests/integration</directory>
        </testsuite>
    </testsuites>
    <php>
        <env name="ALMA_API_KEY" value="sk_test_xxxxxxxxxxxxxxxxxxxxxxxx"/>
        <env name="ALMA_API_ROOT" value="alma.api.url.eu"/>
    </php>

</phpunit>
