Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 6ca5e4c

Browse files
committed
Updated phpunit.xml.dist configuraation
Removed unused env variable, added attribute to process uncovered files from whitelist
1 parent 5b6f807 commit 6ca5e4c

File tree

1 file changed

+4
-21
lines changed

1 file changed

+4
-21
lines changed

phpunit.xml.dist

+4-21
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,17 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
4-
bootstrap="./vendor/autoload.php"
3+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
55
colors="true">
66
<testsuites>
77
<testsuite name="zend-router Test Suite">
8-
<directory>./test/</directory>
8+
<directory>./test</directory>
99
</testsuite>
1010
</testsuites>
1111

12-
<groups>
13-
<exclude>
14-
<group>disable</group>
15-
</exclude>
16-
</groups>
17-
1812
<filter>
19-
<whitelist addUncoveredFilesFromWhitelist="true">
13+
<whitelist processUncoveredFilesFromWhitelist="true">
2014
<directory suffix=".php">./src</directory>
2115
</whitelist>
2216
</filter>
23-
24-
<php>
25-
<ini name="date.timezone" value="UTC"/>
26-
27-
<!-- OB_ENABLED should be enabled for some tests to check if all
28-
functionality works as expected. Such tests include those for
29-
Zend\Soap and Zend\Session, which require that headers not be sent
30-
in order to work. -->
31-
<env name="TESTS_ZEND_OB_ENABLED" value="false" />
32-
33-
</php>
3417
</phpunit>

0 commit comments

Comments
 (0)