-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathphpunit.xml
More file actions
57 lines (51 loc) · 1.88 KB
/
Copy pathphpunit.xml
File metadata and controls
57 lines (51 loc) · 1.88 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" encoding="UTF-8" ?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="./vendor/autoload.php"
colors="true"
stopOnFailure="true"
>
<php>
<env name="CONSUL_HTTP_ADDR" value="127.0.0.1:8500" force="true"/>
<env name="CONSUL_HTTP_SSL" value="0" force="true"/>
</php>
<testsuites>
<testsuite name="unit">
<directory>./tests/Unit</directory>
</testsuite>
<testsuite name="usage-config">
<file>./tests/Integration/ConfigTest.php</file>
</testsuite>
<testsuite name="usage-request">
<file>./tests/Integration/RequestTest.php</file>
</testsuite>
<testsuite name="usage-acl">
<directory>./tests/Integration/ACL</directory>
</testsuite>
<testsuite name="usage-agent">
<directory>./tests/Integration/Agent</directory>
</testsuite>
<testsuite name="usage-catalog">
<directory>./tests/Integration/Catalog</directory>
</testsuite>
<testsuite name="usage-coordinate">
<directory>./tests/Integration/Coordinate</directory>
</testsuite>
<testsuite name="usage-event">
<directory>./tests/Integration/Event</directory>
</testsuite>
<testsuite name="usage-kv">
<directory>./tests/Integration/KV</directory>
</testsuite>
<testsuite name="usage-operator">
<directory>./tests/Integration/Operator</directory>
</testsuite>
<testsuite name="usage-session">
<directory>./tests/Integration/Session</directory>
</testsuite>
<testsuite name="usage-random">
<directory>./tests/Integration/Random</directory>
</testsuite>
</testsuites>
</phpunit>