phpunit.xml

Summary

Maintainability
Test Coverage
<phpunit bootstrap="./tests/phpunit.php">
    <testsuites>
        <testsuite name="unit">
            <directory>./tests</directory>
            <exclude>./tests/PHPixie/Tests/ORM/Functional</exclude>
        </testsuite>
        <testsuite name="functional">
            <directory>./tests/PHPixie/Tests/ORM/Functional</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory suffix=".php">./src</directory>
        </whitelist>
    </filter>
</phpunit>