chill-bundles/phpunit.xml.dist

26 lines
903 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./Resources/test/Fixtures/App/app/autoload.php" colors="true">
<!-- the file ".Resources/test/boostrap.php" will be created on the next step -->
<testsuites>
<testsuite name="ChillPersonBundle test suite">
<directory suffix="Test.php">./Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Resources</directory>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<php>
<server name="KERNEL_DIR" value="./Resources/test/Fixtures/App/app/" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
<ini name="memory_limit" value="-1" />
</php>
</phpunit>