| <?xml version="1.0" encoding="UTF-8"?>
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
    backupGlobals               = "false"
    backupStaticAttributes      = "false"
    colors                      = "true"
    convertErrorsToExceptions   = "true"
    convertNoticesToExceptions  = "true"
    convertWarningsToExceptions = "true"
    processIsolation            = "false"
    stopOnError                 = "true"
    stopOnFailure               = "true"
    stopOnIncomplete            = "true"
    stopOnSkipped               = "ture"
    syntaxCheck                 = "true"
    strict                      = "false"
    verbose                     = "true"
    debug                       = "true"
    bootstrap                   = "tests/bootstrap.php" >
    <testsuites>
        <testsuite name="Haanga tests">
            <directory>tests/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory>tests/</directory>
            <directory suffix=".php">lib/</directory>
        </whitelist>
    </filter>
</phpunit>
 |