Flow2Lab/EventSourcing

View on GitHub
UnitTests.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0"?>
<phpunit
        bootstrap="../../../Build/BuildEssentials/PhpUnit/UnitTestBootstrap.php"
        beStrictAboutChangesToGlobalState="true"
        beStrictAboutTestsThatDoNotTestAnything="true"
        checkForUnintentionallyCoveredCode="true"
        beStrictAboutOutputDuringTests="true"
        convertErrorsToExceptions="true"
        convertNoticesToExceptions="true"
        convertWarningsToExceptions="true"
        timeoutForSmallTests="0">
    <testsuites>
        <testsuite name="All tests">
            <directory>../../../Packages/Application/Flow2Lab.EventSourcing/Tests/Unit</directory>
            <exclude>../../../Packages/Libraries</exclude>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist addUncoveredFilesFromWhitelist="false">
            <directory>../../../Packages/*/*/Classes</directory>
        </whitelist>
    </filter>
    <logging>
        <log type="coverage-clover" target="./build/logs/clover.xml"/>
        <log type="junit" target="./build/logs/UnitTests.xml" logIncompleteSkipped="false"/>
    </logging>
</phpunit>