Skip to content

Commit 5f734e6

Browse files
committed
Add phpunit config
1 parent 3861b62 commit 5f734e6

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

phpunit.xml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
backupGlobals="false">
7+
<testsuites>
8+
<testsuite name="react-multiprocess-server">
9+
<directory>./test/</directory>
10+
</testsuite>
11+
</testsuites>
12+
13+
<groups>
14+
<exclude>
15+
<group>disable</group>
16+
</exclude>
17+
</groups>
18+
19+
<filter>
20+
<whitelist addUncoveredFilesFromWhitelist="true">
21+
<directory suffix=".php">./src</directory>
22+
</whitelist>
23+
</filter>
24+
25+
<php>
26+
<ini name="date.timezone" value="UTC"/>
27+
</php>
28+
</phpunit>

0 commit comments

Comments
 (0)