<?xml version="1.0" encoding="UTF-8"?> 
<phpunit bootstrap="./bootstrap.php"
    backupGlobals="true"
    colors="true" 
    convertErrorsToExceptions="true" 
    convertNoticesToExceptions="true" 
    convertWarningsToExceptions="true" 
    processIsolation="false" 
    verbose="true"
    stopOnError="false"
    stopOnFailure="false"
    stopOnIncomplete="false"
    stopOnSkipped="false">
    <php>
        <ini name="memory_limit" value="2048M"/>
    </php>
    <testsuite name="Complex Unit Test Suite">
        <directory suffix="Test.php">./classes</directory>
    </testsuite>
    <filter>
        <whitelist>
            <directory suffix=".php">../classes</directory>
        </whitelist>
    </filter>
    <logging>
        <log type="coverage-html" target="./codeCoverage" lowUpperBound="35" highLowerBound="70"/>
        <log type="coverage-clover" target="./codeCoverage/codeCoverage.xml"/>
    </logging>
</phpunit> 
