-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathphpunit.xml
More file actions
executable file
·22 lines (22 loc) · 887 Bytes
/
phpunit.xml
File metadata and controls
executable file
·22 lines (22 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<testsuites>
<testsuite name="unit">
<directory>./tests</directory>
<exclude>./tests/e2e</exclude>
<exclude>./tests/BaseTest.php</exclude>
<exclude>./tests/UtopiaFPMRequestTest.php</exclude>
</testsuite>
<testsuite name="e2e-fpm">
<file>./tests/e2e/ResponseFPMTest.php</file>
</testsuite>
<testsuite name="e2e-swoole">
<file>./tests/e2e/ResponseSwooleTest.php</file>
</testsuite>
</testsuites>
<source>
<include>
<directory>./src</directory>
</include>
</source>
</phpunit>