Skip to content
Snippets Groups Projects
phpunit.xml.dist 623 B
Newer Older
<?xml version="1.0" encoding="UTF-8"?>

<phpunit colors="true" 
         convertErrorsToExceptions="true" 
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true" 
         processIsolation="false" 
         stopOnFailure="false"
         bootstrap="tests/bootstrap.php">
    <testsuites>
        <testsuite name="Project Tests Suite">
            <directory>tests</directory>
        </testsuite>
    </testsuites>

    <coverage processUncoveredFiles="true">
        <include>
            <directory suffix=".php">src/ElasticSearch/</directory>
        </include>
    </coverage>
</phpunit>