2018-09-01 22:18:13 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
|
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
|
|
|
|
backupGlobals="false"
|
|
|
|
colors="true"
|
|
|
|
bootstrap="vendor/autoload.php"
|
|
|
|
>
|
|
|
|
<php>
|
|
|
|
<ini name="error_reporting" value="-1" />
|
|
|
|
<env name="KERNEL_CLASS" value="App\Kernel" />
|
|
|
|
<env name="APP_ENV" value="test" />
|
|
|
|
<env name="APP_DEBUG" value="1" />
|
|
|
|
<env name="APP_SECRET" value="s$cretf0rt3st" />
|
|
|
|
<env name="SHELL_VERBOSITY" value="-1" />
|
2018-10-31 08:56:25 +01:00
|
|
|
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled" />
|
2018-11-17 13:38:02 +01:00
|
|
|
<env name="DATABASE_URL" value="mysql://DEV_USER:userpass@db:3306/DEV_DATABASE" />
|
2018-09-01 22:18:13 +02:00
|
|
|
</php>
|
|
|
|
|
|
|
|
<testsuites>
|
2018-09-05 19:12:57 +02:00
|
|
|
<testsuite name="Integration Test Suite">
|
2018-11-22 09:14:22 +01:00
|
|
|
<directory>./tests/Integration/</directory>
|
2018-09-01 22:18:13 +02:00
|
|
|
</testsuite>
|
2018-09-05 09:03:50 +02:00
|
|
|
<testsuite name="Unit Test Suite">
|
2018-10-31 19:15:07 +01:00
|
|
|
<directory>./tests/Unit/</directory>
|
2018-09-05 09:03:50 +02:00
|
|
|
<file>*Test.php</file>
|
|
|
|
</testsuite>
|
2018-09-01 22:18:13 +02:00
|
|
|
</testsuites>
|
2018-10-28 22:20:23 +01:00
|
|
|
<filter>
|
|
|
|
<whitelist>
|
|
|
|
<directory>./src/</directory>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2018-09-01 22:18:13 +02:00
|
|
|
<listeners>
|
|
|
|
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
|
|
|
|
</listeners>
|
|
|
|
</phpunit>
|