-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathphpunit.xml
More file actions
executable file
·27 lines (27 loc) · 992 Bytes
/
phpunit.xml
File metadata and controls
executable file
·27 lines (27 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">./tests/</directory>
<exclude>./tests/e2e</exclude>
</testsuite>
<testsuite name="fpm">
<file>./tests/e2e/Client.php</file>
<directory suffix="Test.php">./tests/e2e/</directory>
<exclude>./tests/e2e/SwooleResponseTest.php</exclude>
</testsuite>
<testsuite name="swoole">
<file>./tests/e2e/Client.php</file>
<file>./tests/e2e/ResponseTest.php</file>
<file>./tests/e2e/SwooleResponseTest.php</file>
</testsuite>
</testsuites>
</phpunit>