<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         bootstrap="vendor/autoload.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false">

    <php>
        <server name="KERNEL_DIR" value="./app" />
        <server name="KERNEL_CLASS" value="\Frontastic\Common\ApiTests\TestKernel" />
    </php>

    <testsuites>
        <testsuite name="Common Library API Integration Test Suite">
            <directory>test/api/</directory>
        </testsuite>
    </testsuites>

    <filter>
        <whitelist addUncoveredFilesFromWhitelist="true">
            <directory>src/php/</directory>
        </whitelist>
    </filter>
</phpunit>
