-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
30 lines (27 loc) · 942 Bytes
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="components">
<directory suffix="Test.php">./src/Sulu/Component/*/Tests</directory>
</testsuite>
</testsuites>
<!-- Code coverage filter -->
<filter>
<whitelist>
<directory>./src/Sulu/Component/</directory>
<exclude>
<directory>./tests</directory>
<directory>./vendor</directory>
<directory>./*/Tests</directory>
</exclude>
</whitelist>
</filter>
<php>
<env name="SYMFONY_PHPUNIT_VERSION" value="8.0"/>
<server name="APP_ENV" value="test" force="true"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak"/>
</php>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
</phpunit>