-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
phpunit.xml
43 lines (43 loc) · 1.52 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
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="tests/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd">
<coverage>
<report>
<clover outputFile="build/coverage.clover"/>
</report>
</coverage>
<testsuites>
<testsuite name="Apc">
<directory suffix="Test.php">tests/Adapters/Apc</directory>
</testsuite>
<testsuite name="Couchbase">
<directory suffix="Test.php">tests/Adapters/Couchbase</directory>
</testsuite>
<testsuite name="Flysystem">
<directory suffix="Test.php">tests/Adapters/Flysystem</directory>
</testsuite>
<testsuite name="Memcached">
<directory suffix="Test.php">tests/Adapters/Memcached</directory>
</testsuite>
<testsuite name="MemoryStore">
<directory suffix="Test.php">tests/Adapters/MemoryStore</directory>
</testsuite>
<testsuite name="MySQL">
<directory suffix="Test.php">tests/Adapters/MySQL</directory>
</testsuite>
<testsuite name="PostgreSQL">
<directory suffix="Test.php">tests/Adapters/PostgreSQL</directory>
</testsuite>
<testsuite name="Redis">
<directory suffix="Test.php">tests/Adapters/Redis</directory>
</testsuite>
<testsuite name="SQLite">
<directory suffix="Test.php">tests/Adapters/SQLite</directory>
</testsuite>
</testsuites>
<logging/>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>