bluetree-service/data

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit bootstrap="vendor/autoload.php" colors="true">
    <testsuites>
        <testsuite name="bluetree-data-xml">
            <directory>tests/XmlTest.php</directory>
        </testsuite>
        <testsuite name="bluetree-data-math">
            <file>tests/MathTest.php</file>
            <file>tests/FormatsTest.php</file>
        </testsuite>
        <testsuite name="bluetree-data-validator">
            <file>tests/ValidatorTest.php</file>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">src</directory>
        </whitelist>
    </filter>
</phpunit>