We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3861b62 commit 5f734e6Copy full SHA for 5f734e6
phpunit.xml
@@ -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