-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathphpunit.xml
27 lines (27 loc) · 1.02 KB
/
phpunit.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="true"
stopOnSkipped="true"
>
<php>
<var name="SERVER_HOST" value="http://127.0.0.1:8000" />
</php>
<testsuites>
<testsuite name="php-msf Test Suite">
<directory suffix="Test.php">./test/Base</directory>
<directory suffix="Test.php">./test/Http</directory>
<directory suffix="Test.php">./test/Tcp</directory>
<directory suffix="Test.php">./test/Rpc</directory>
<directory suffix="Test.php">./test/Redis</directory>
<directory suffix="Test.php">./test/MongoDB</directory>
<directory suffix="Test.php">./test/MySQL</directory>
</testsuite>
</testsuites>
</phpunit>