tawfekov/ZF2EntityAudit

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0"?>
<phpunit bootstrap="./tests/Bootstrap.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         verbose="true"
         stopOnFailure="true"
         processIsolation="false"
         backupGlobals="false"
         syntaxCheck="true">
    <testsuites>
        <testsuite name="ZF2EntityAuditTest">
            <directory>./tests/ZF2EntityAuditTest/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist addUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">./src</directory>
            <exclude>
                <directory suffix=".php">./src/ZF2EntityAudit/Controller</directory>
                <directory suffix=".php">./src/ZF2EntityAudit/View</directory>
                <file>./src/ZF2EntityAudit/Version.php</file>
            </exclude>
        </whitelist>
    </filter>
    <logging>
        <log type="coverage-clover" target="./clover.xml"/>
        <log type="coverage-html" target="./report" charset="UTF-8"
            yui="true" highlight="false"
            lowUpperBound="35" highLowerBound="70"/>
    </logging>
</phpunit>