Codebase list php-react-promise / 9fb354e9-58e1-4980-b91a-7fbbbc259b2f/upstream/2.9.0+git20221119.0.6019855 phpunit.xml.legacy
9fb354e9-58e1-4980-b91a-7fbbbc259b2f/upstream/2.9.0+git20221119.0.6019855

Tree @9fb354e9-58e1-4980-b91a-7fbbbc259b2f/upstream/2.9.0+git20221119.0.6019855 (Download .tar.gz)

phpunit.xml.legacy @9fb354e9-58e1-4980-b91a-7fbbbc259b2f/upstream/2.9.0+git20221119.0.6019855raw · history · blame

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

<!-- PHPUnit configuration file with old format before PHPUnit 9 -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.5/phpunit.xsd"
         bootstrap="vendor/autoload.php"
         colors="true">
    <testsuites>
        <testsuite name="Promise Test Suite">
            <directory>./tests/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory>./src/</directory>
            <exclude>
                <file>./src/functions_include.php</file>
            </exclude>
        </whitelist>
    </filter>
    <php>
        <ini name="error_reporting" value="-1" />
        <!-- Evaluate assertions, requires running with "php -d zend.assertions=1 vendor/bin/phpunit" -->
        <!-- <ini name="zend.assertions=1" value="1" /> -->
        <ini name="assert.active" value="1" />
        <ini name="assert.exception" value="1" />
        <ini name="assert.bail" value="0" />
    </php>
</phpunit>