infinito/application/phpunit.xml.dist

39 lines
1.3 KiB
Plaintext
Raw Normal View History

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" />
<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">
<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>