mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
25 lines
779 B
XML
25 lines
779 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit bootstrap="./vendor/autoload.php" colors="true">
|
|
<testsuites>
|
|
<testsuite name="ChillMain 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" />
|
|
<env name="APP_ENV" value="test" />
|
|
</php>
|
|
</phpunit>
|