the-matrix/finite-state-machine

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<phpunit
        colors="true"
        processIsolation="false"
        stopOnError="false"
        stopOnFailure="false"
        stopOnIncomplete="false"
        stopOnSkipped="false"
        stopOnRisky="false"
>
    <testsuites>
        <testsuite name="Default">
            <directory suffix="Test.php">./test/StateMachine</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">./src/StateMachine</directory>
        </whitelist>
    </filter>
    <logging>
        <!--<log type="coverage-html" target="build/coverage"/>-->
        <log type="testdox-html" target="./docs/contract.html"/>
        <!--<log type="coverage-clover" target="../docs/clover.xml"/>-->
        <!--<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>-->
    </logging>
</phpunit>