Skip to content

Commit 8eabc5b

Browse files
update phpunit.xml.dist
1 parent 512fb4e commit 8eabc5b

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

phpunit.xml.dist

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,27 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
32
<!-- https://phpunit.de/manual/3.7/en/appendixes.configuration.html -->
43
<phpunit
54
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
5+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
76
bootstrap="tests/App/bootstrap.php"
87
colors="true"
98
beStrictAboutOutputDuringTests="true"
9+
cacheDirectory=".phpunit.cache"
1010
>
11-
1211
<php>
13-
<server name="KERNEL_CLASS" value="Liip\Acme\Tests\App\AppKernel" />
12+
<server name="KERNEL_CLASS" value="Liip\Acme\Tests\App\AppKernel"/>
1413
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak"/>
1514
</php>
16-
1715
<testsuites>
1816
<testsuite name="Project Test Suite">
1917
<directory>tests/Command</directory>
2018
<directory>tests/DependencyInjection</directory>
2119
<directory>tests/Test</directory>
2220
</testsuite>
2321
</testsuites>
24-
25-
<filter>
26-
<whitelist>
22+
<coverage>
23+
<include>
2724
<directory>src</directory>
28-
</whitelist>
29-
</filter>
25+
</include>
26+
</coverage>
3027
</phpunit>

0 commit comments

Comments
 (0)