Codebase list php-react-promise / run/9fb354e9-58e1-4980-b91a-7fbbbc259b2f/main phpunit.xml.dist
run/9fb354e9-58e1-4980-b91a-7fbbbc259b2f/main

Tree @run/9fb354e9-58e1-4980-b91a-7fbbbc259b2f/main (Download .tar.gz)

phpunit.xml.dist @run/9fb354e9-58e1-4980-b91a-7fbbbc259b2f/mainraw · history · blame

<?xml version="1.0" encoding="UTF-8"?>

<!-- PHPUnit configuration file with new format for PHPUnit 9.3+ -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
         bootstrap="vendor/autoload.php"
         colors="true"
         cacheResult="false">
    <testsuites>
        <testsuite name="Promise Test Suite">
            <directory>./tests/</directory>
        </testsuite>
    </testsuites>
    <coverage>
        <include>
            <directory>./src/</directory>
        </include>
        <exclude>
            <file>./src/functions_include.php</file>
        </exclude>
    </coverage>
</phpunit>