fathomminds/php-rest-models

View on GitHub
phpunit-integration-test.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false"
         syntaxCheck="false"
         bootstrap="./bootstrap.php">
    <testsuites>
        <!--
        <testsuite name="DynamoDb Test Suite">
            <directory suffix="Test.php">./tests-integration/DynamoDb</directory>
        </testsuite>
        <testsuite name="Clusterpoint Test Suite">
            <directory suffix="Test.php">./tests-integration/Clusterpoint</directory>
        </testsuite>
        -->
        <testsuite name="MongoDB Test Suite">
            <directory suffix="Test.php">./tests-integration/MongoDB</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">src</directory>
        </whitelist>
    </filter>
</phpunit>