-
Notifications
You must be signed in to change notification settings - Fork 69
/
phpunit.xml.dist
110 lines (87 loc) · 3.29 KB
/
phpunit.xml.dist
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
101
102
103
104
105
106
107
108
109
110
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./tests/bootstrap.php"
>
<php>
<ini name="memory_limit" value="-1"/>
<ini name="apc.enable_cli" value="1"/>
<!-- SQLite
<env name="db_dsn" value="sqlite:///:memory:"/>
-->
<!-- Mysql
<env name="db_dsn" value="mysql://localhost/quick_test?timezone=UTC"/>
-->
</php>
<testsuites>
<testsuite name="QuickAppsCMS Test Suite">
<directory>./tests/TestCase/</directory>
</testsuite>
<testsuite name="Backend theme">
<directory>./plugins/BackendTheme/tests/TestCase</directory>
</testsuite>
<testsuite name="Block plugin">
<directory>./plugins/Block/tests/TestCase</directory>
</testsuite>
<testsuite name="Bootstrap plugin">
<directory>./plugins/Bootstrap/tests/TestCase</directory>
</testsuite>
<testsuite name="Captcha plugin">
<directory>./plugins/Captcha/tests/TestCase</directory>
</testsuite>
<testsuite name="Comment plugin">
<directory>./plugins/Comment/tests/TestCase</directory>
</testsuite>
<testsuite name="Eav plugin">
<directory>./plugins/Eav/tests/TestCase</directory>
</testsuite>
<testsuite name="Field plugin">
<directory>./plugins/Field/tests/TestCase</directory>
</testsuite>
<testsuite name="Frontend theme">
<directory>./plugins/FrontendTheme/tests/TestCase</directory>
</testsuite>
<testsuite name="Installer plugin">
<directory>./plugins/Installer/tests/TestCase</directory>
</testsuite>
<testsuite name="Jquery plugin">
<directory>./plugins/Jquery/tests/TestCase</directory>
</testsuite>
<testsuite name="Locale plugin">
<directory>./plugins/Locale/tests/TestCase</directory>
</testsuite>
<testsuite name="Menu plugin">
<directory>./plugins/Menu/tests/TestCase</directory>
</testsuite>
<testsuite name="Content plugin">
<directory>./plugins/Content/tests/TestCase</directory>
</testsuite>
<testsuite name="Search plugin">
<directory>./plugins/Search/tests/TestCase</directory>
</testsuite>
<testsuite name="System plugin">
<directory>./plugins/System/tests/TestCase</directory>
</testsuite>
<testsuite name="Taxonomy plugin">
<directory>./plugins/Taxonomy/tests/TestCase</directory>
</testsuite>
<testsuite name="User plugin">
<directory>./plugins/User/tests/TestCase</directory>
</testsuite>
<testsuite name="Wysiwyg plugin">
<directory>./plugins/Wysiwyg/tests/TestCase</directory>
</testsuite>
</testsuites>
<listeners>
<listener
class="\Cake\TestSuite\Fixture\FixtureInjector"
file="./vendor/cakephp/cakephp/src/TestSuite/Fixture/FixtureInjector.php">
<arguments>
<object class="\Cake\TestSuite\Fixture\FixtureManager" />
</arguments>
</listener>
</listeners>
</phpunit>