Kylob/BootPress

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php" stderr="true">
<!-- http://stackoverflow.com/questions/9745080/test-php-headers-with-phpunit?rq=1 -->

    <testsuites>
        <testsuite name="BootPress Components">
            <directory>tests</directory>
        </testsuite>
    </testsuites>
    
    <filter>
        <whitelist>
            <directory>src</directory>
        </whitelist>
    </filter>
    
</phpunit>