-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathphpunit.xml
More file actions
executable file
·32 lines (32 loc) · 1.15 KB
/
phpunit.xml
File metadata and controls
executable file
·32 lines (32 loc) · 1.15 KB
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
28
29
30
31
32
<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">
<file>./tests/MockRequest.php</file>
<file>./tests/MockResponse.php</file>
<file>./tests/HookTest.php</file>
<file>./tests/HttpTest.php</file>
<file>./tests/RequestTest.php</file>
<file>./tests/ResponseTest.php</file>
<file>./tests/RouterTest.php</file>
<file>./tests/RouteTest.php</file>
<file>./tests/UtopiaFPMRequestTest.php</file>
</testsuite>
<testsuite name="e2e">
<file>./tests/e2e/Client.php</file>
<file>./tests/e2e/BaseTest.php</file>
<file>./tests/e2e/ResponseFPMTest.php</file>
<file>./tests/e2e/ResponseSwooleTest.php</file>
<file>./tests/e2e/ResponseSwooleCoroutineTest.php</file>
</testsuite>
</testsuites>
</phpunit>