-
Notifications
You must be signed in to change notification settings - Fork 55
/
phpunit.fastest.xml
68 lines (60 loc) · 2.55 KB
/
phpunit.fastest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?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="https://schema.phpunit.de/8.4/phpunit.xsd"
backupGlobals="false"
colors="true"
testdox="true"
beStrictAboutTodoAnnotatedTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
bootstrap="tests/bootstrap.php"
>
<php>
<ini name="error_reporting" value="-1" />
<ini name="display_errors" value="On" />
<ini name="display_startup_errors" value="On" />
<ini name="date.timezone" value="UTC" />
<env name="KERNEL_CLASS" value="App\Kernel" />
<env name="SHELL_VERBOSITY" value="-1" />
<env name="APP_ENV" value="test" force="true" />
<env name="APP_DEBUG" value="0" />
<env name="APP_SECRET" value="93b60d4136baea83cf3821ee6a0a2adb" />
<!--
To make sure that application has no "direct" deprecations we use `max[direct]=0` as a default one
indirect deprecations are just shown on test output to help to track those.
Note that you can change this behaviour if you want to, just see following documentation and see
how you can configure that.
https://symfony.com/doc/current/components/phpunit_bridge.html#direct-and-indirect-deprecations
-->
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[direct]=1" />
</php>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
<testsuites>
<testsuite name="E2E">
<directory>./tests/E2E/</directory>
</testsuite>
<testsuite name="Functional">
<directory>./tests/Functional/</directory>
</testsuite>
<testsuite name="Integration">
<directory>./tests/Integration/</directory>
</testsuite>
<testsuite name="Unit">
<directory>./tests/Unit/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<exclude>
<directory>./src/Command</directory>
<directory>./src/DataFixtures</directory>
<directory>./src/Migrations</directory>
<file>./src/Kernel.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>