-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathphpunit.xml
More file actions
100 lines (78 loc) · 3.3 KB
/
Copy pathphpunit.xml
File metadata and controls
100 lines (78 loc) · 3.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php"
>
<php>
<var name="DEMO_DATABASE_USER" value="icomefromthenet"/>
<var name="DEMO_DATABASE_PASSWORD" value=""/>
<var name="DEMO_DATABASE_SCHEMA" value="c9"/>
<var name="DEMO_DATABASE_PORT" value="3306"/>
<var name="DEMO_DATABASE_HOST" value="172.17.41.61"/>
<var name="DEMO_DATABASE_TYPE" value="pdo_mysql"/>
</php>
<testsuites>
<testsuite name="Setup">
<directory suffix="Test.php">src/Test/</directory>
<exclude>src/Tests/Base/</exclude>
<groups>
<include><group>Setup</group></include>
<exclude><group>Booking</group></exclude>
<exclude><group>Rollover</group></exclude>
<exclude><group>Rule</group></exclude>
<exclude><group>Management</group></exclude>
</groups>
</testsuite>
<testsuite name="Rule">
<directory suffix="Test.php">src/Test/</directory>
<exclude>src/Tests/Base/</exclude>
<groups>
<include><group>Rule</group></include>
<exclude><group>Setup</group></exclude>
<exclude><group>Rollover</group></exclude>
<exclude><group>Booking</group></exclude>
<exclude><group>Management</group></exclude>
</groups>
</testsuite>
<testsuite name="Management">
<directory suffix="Test.php">src/Test/</directory>
<exclude>src/Tests/Base/</exclude>
<groups>
<include><group>Management</group></include>
<exclude><group>Setup</group></exclude>
<exclude><group>Rollover</group></exclude>
<exclude><group>Booking</group></exclude>
<exclude><group>Rule</group></exclude>
</groups>
</testsuite>
<testsuite name="Booking">
<directory suffix="Test.php">src/Test/</directory>
<exclude>src/Tests/Base/</exclude>
<groups>
<include><group>Booking</group></include>
<exclude><group>Setup</group></exclude>
<exclude><group>Rollover</group></exclude>
<exclude><group>Rule</group></exclude>
<exclude><group>Management</group></exclude>
</groups>
</testsuite>
<testsuite name="Rollover">
<directory suffix="Test.php">src/Test/</directory>
<exclude>src/Tests/Base/</exclude>
<groups>
<include><group>Rollover</group></include>
<exclude><group>Setup</group></exclude>
<exclude><group>Booking</group></exclude>
<exclude><group>Rule</group></exclude>
<exclude><group>Management</group></exclude>
</groups>
</testsuite>
</testsuites>
</phpunit>