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

<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="true"
         syntaxCheck="false"
         bootstrap="test/bootstrap.php"
        >
    <testsuites>
        <testsuite name="Arya Tests">
            <directory>./test/</directory>
        </testsuite>
    </testsuites>

    <php>
        <const name="WEB_SERVER_HOST" value="127.0.0.1" />
        <const name="WEB_SERVER_PORT" value="9500" />
        <const name="WEB_SERVER_ROUTER" value="./test/integration_front_controller.php" />
    </php>

    <filter>
        <whitelist>
            <directory>./src/</directory>
        </whitelist>
    </filter>

    <logging>
        <log    type="coverage-text"
                target="php://stdout"
                lowUpperBound="35"
                highLowerBound="70"
                />
        <!--
        <log
                type="coverage-html"
                target="./test/coverage"
                charset="UTF-8"
                yui="true"
                lowUpperBound="35"
                highLowerBound="70"
                showUncoveredFiles="true"
                />
        -->
    </logging>

</phpunit>
