-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
executable file
·25 lines (25 loc) · 850 Bytes
/
phpunit.xml
File metadata and controls
executable file
·25 lines (25 loc) · 850 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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="test/test_helper.php"
colors="true"
verbose="true"
reportUselessTests="true"
>
<php>
<includePath>../../test/support</includePath>
<includePath>../../test/support/lib</includePath>
<includePath>test/support</includePath>
<includePath>test/support/lib</includePath>
</php>
<testsuites>
<testsuite name="cURL based tests">
<directory>test/integration</directory>
</testsuite>
<testsuite name="Unit tests">
<directory>test/unit</directory>
</testsuite>
</testsuites>
</phpunit>