forked from PHP-on-Couch/PHP-on-Couch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
32 lines (32 loc) · 1.4 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
28
29
30
31
32
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd" bootstrap="./vendor/autoload.php">
<testsuites>
<testsuite name="Global">
<directory>./tests</directory>
</testsuite>
<testsuite name="Admin">
<file>./tests/couchClientAdminTest.php</file>
</testsuite>
<testsuite name="Ordered">
<file>./tests/Adapter/AbstractCouchHttpAdapterTest.php</file>
<file>./tests/Adapter/CouchHttpAdapterCurlTest.php</file>
<file>./tests/Adapter/CouchHttpAdapterSocketTest.php</file>
<file>./tests/EnvUtilTest.php</file>
<file>./tests/CouchTest.php</file>
<file>./tests/CouchClientTest.php</file>
<file>./tests/CouchClientViewTest.php</file>
<file>./tests/CouchAdminTest.php</file>
<file>./tests/CouchReplicatorTest.php</file>
<file>./tests/CouchDocumentTest.php</file>
<file>./tests/Exceptions/CouchExceptionTest.php</file>
</testsuite>
</testsuites>
<logging>
<log type="coverage-text" target="php://stdout"/>
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true" processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
</phpunit>