mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
43 lines
1.7 KiB
XML
43 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
bootstrap="tests/app/tests/bootstrap.php"
|
|
>
|
|
<php>
|
|
<ini name="error_reporting" value="-1" />
|
|
<server name="APP_ENV" value="test" force="true" />
|
|
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
|
|
<server name="SHELL_VERBOSITY" value="-1" />
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="MainBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillMainBundle/Tests/</directory>
|
|
</testsuite>
|
|
<testsuite name="PersonBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillPersonBundle/Tests/</directory>
|
|
<!-- test for export will be runned later -->
|
|
<exclude>src/Bundle/ChillPersonBundle/Tests/Export/*</exclude>
|
|
<!-- we are rewriting accompanying periods... Work in progress -->
|
|
<exclude>src/Bundle/ChillPersonBundle/Tests/Controller/AccompanyingPeriodControllerTest.php</exclude>
|
|
<!-- find a solution to create multiple configs -->
|
|
<exclude>src/Bundle/ChillPersonBundle/Tests/Controller/PersonControllerUpdateWithHiddenFieldsTest.php</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<listeners>
|
|
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
|
|
</listeners>
|
|
|
|
<!-- Run `composer require symfony/panther` before enabling this extension -->
|
|
<!--
|
|
<extensions>
|
|
<extension class="Symfony\Component\Panther\ServerExtension" />
|
|
</extensions>
|
|
-->
|
|
</phpunit>
|