wexample/symfony-testing

Testing helpers for Symfony / PhpUnit

0.0.26 2024-11-21 09:38 UTC

README

Add to Composer

In composer.json

"autoload-dev": {
    "psr-4": {
        "Wexample\\SymfonyTesting\\Tests\\": "vendor/wexample/symfony-testing/tests/"
    }
},

Add to PhpUnit

In phpunit.xml.dist

<testsuites>
    <testsuite name="Testing Test Suite">
        <directory>vendor/symfony-testing/tests</directory>
    </testsuite>
</testsuites>