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

Commit 3273193

Browse files
committed
Updated PHPUnit configuration
- added attribute to process uncovered files from whitelist
1 parent d727f76 commit 3273193

File tree

1 file changed

+5
-15
lines changed

1 file changed

+5
-15
lines changed

phpunit.xml.dist

+5-15
Original file line numberDiff line numberDiff line change
@@ -1,27 +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-inputfilter 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">
20-
<directory suffix=".php">./src</directory>
13+
<whitelist processUncoveredFilesFromWhitelist="true">
14+
<directory suffix=".php">src</directory>
2115
</whitelist>
2216
</filter>
23-
24-
<php>
25-
<ini name="date.timezone" value="UTC"/>
26-
</php>
2717
</phpunit>

0 commit comments

Comments
 (0)