-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
phpunit.xml.dist
20 lines (20 loc) · 1 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" colors="true" defaultTestSuite="changelanguage" bootstrap="vendor/autoload.php">
<php>
<ini name="error_reporting" value="-1"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0"/>
<env name="SYMFONY_PATCH_TYPE_DECLARATIONS" value="deprecations=0"/>
<env name="KERNEL_CLASS" value="Terminal42\ChangeLanguage\Tests\Fixtures\app\AppKernel"/>
<env name="APP_SECRET" value="foobar"/>
<env name="DATABASE_URL" value="mysql://root@localhost:3306/changelanguage"/>
</php>
<testsuites>
<testsuite name="changelanguage">
<directory>./tests</directory>
<exclude>./tests/Fixtures</exclude>
</testsuite>
</testsuites>
<extensions>
<extension class="Terminal42\ChangeLanguage\Tests\ClearCachePhpunitExtension"/>
</extensions>
</phpunit>