hglattergotz/metrics

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>

<phpunit bootstrap="./tests/bootstrap.php" colors="true">
    <testsuites>
        <testsuite name="Metircs Test Suite">
            <directory suffix="Test.php">./tests/HGG/Metrics/Test/</directory>
        </testsuite>
    </testsuites>

    <filter>
        <whitelist>
            <directory suffix=".php">./src/HGG/Metrics/</directory>
        </whitelist>
    </filter>
</phpunit>