-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpunit.xml
More file actions
21 lines (21 loc) · 899 Bytes
/
phpunit.xml
File metadata and controls
21 lines (21 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<phpunit backupGlobals="false"
bootstrap="vendor/autoload.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
<testsuite name="unit">
<file>./tests/Queue/E2E/Adapter/LockingTest.php</file>
<file>./tests/Queue/E2E/Adapter/RedisReconnectCallbackTest.php</file>
<file>./tests/Queue/E2E/Adapter/ServerTelemetryTest.php</file>
<file>./tests/Queue/E2E/Adapter/SwooleConcurrencyTest.php</file>
</testsuite>
<testsuite name="e2e">
<file>./tests/Queue/E2E/Adapter/PoolTest.php</file>
<file>./tests/Queue/E2E/Adapter/SwooleTest.php</file>
<file>./tests/Queue/E2E/Adapter/SwooleRedisClusterTest.php</file>
<file>./tests/Queue/E2E/Adapter/WorkermanTest.php</file>
</testsuite>
</testsuites>
</phpunit>