-
Notifications
You must be signed in to change notification settings - Fork 20
/
phpunit.xml.dist
39 lines (38 loc) · 1.12 KB
/
phpunit.xml.dist
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
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
colors="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="vendor/autoload.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
cacheDirectory=".phpunit.cache"
backupStaticProperties="true"
>
<coverage>
<include>
<directory>./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Guzzle">
<directory>./tests/Guzzle/</directory>
</testsuite>
<testsuite name="RingCentral">
<directory>./tests/RingCentral/</directory>
</testsuite>
<testsuite name="Slim">
<directory>./tests/Slim/</directory>
</testsuite>
<testsuite name="Laminas">
<directory>./tests/Laminas/</directory>
</testsuite>
<testsuite name="Nyholm">
<directory>./vendor/nyholm/psr7/tests/Integration/</directory>
</testsuite>
<testsuite name="HttpSoft">
<directory>./vendor/httpsoft/http-message/tests/Integration/</directory>
</testsuite>
</testsuites>
</phpunit>