-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
57 lines (56 loc) · 2.3 KB
/
Copy pathphpunit.xml
File metadata and controls
57 lines (56 loc) · 2.3 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheDirectory=".phpunit.cache"
backupGlobals="false"
backupStaticProperties="false"
colors="true"
processIsolation="false"
stopOnFailure="false"
>
<!--
One suite per adapter: every adapter runs the same behaviour scenarios
(tests/Feed/{Producer,Consumer,Server}/Base.php), so a suite passing
means that adapter honours the whole contract. `unit` needs no
services; `redis` and `pool` need the compose Redis.
-->
<!-- Scoped to src/, so a report measures the library, not its fixtures. -->
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
<testsuites>
<testsuite name="unit">
<directory>./tests/Feed/Unit</directory>
</testsuite>
<testsuite name="memory">
<file>./tests/Feed/Producer/MemoryTest.php</file>
<file>./tests/Feed/Server/MemoryTest.php</file>
<file>./tests/Feed/Consumer/MemoryTest.php</file>
<file>./tests/Feed/Cursor/MemoryTest.php</file>
</testsuite>
<testsuite name="cache">
<file>./tests/Feed/Producer/CacheTest.php</file>
<file>./tests/Feed/Server/CacheTest.php</file>
<file>./tests/Feed/Consumer/CacheTest.php</file>
<file>./tests/Feed/Cursor/CacheTest.php</file>
</testsuite>
<testsuite name="http">
<file>./tests/Feed/Consumer/HttpTest.php</file>
</testsuite>
<testsuite name="redis">
<file>./tests/Feed/Producer/RedisTest.php</file>
<file>./tests/Feed/Server/RedisTest.php</file>
<file>./tests/Feed/Consumer/RedisTest.php</file>
<file>./tests/Feed/Cursor/RedisTest.php</file>
</testsuite>
<testsuite name="pool">
<file>./tests/Feed/Producer/PoolTest.php</file>
<file>./tests/Feed/Server/PoolTest.php</file>
<file>./tests/Feed/Consumer/PoolTest.php</file>
<file>./tests/Feed/Cursor/PoolTest.php</file>
</testsuite>
</testsuites>
</phpunit>