-
Notifications
You must be signed in to change notification settings - Fork 72
/
phpunit.xml
125 lines (123 loc) · 3.76 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<phpunit
bootstrap="tests/bootstrap/bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<testsuites>
<testsuite name="funcAcl">
<directory>funcAcl/test</directory>
</testsuite>
<testsuite name="generis">
<directory>generis/test/</directory>
</testsuite>
<testsuite name="qtiItemPci">
<directory>qtiItemPci/test</directory>
</testsuite>
<!--
<testsuite name="qtiItemPic">
<directory>qtiItemPic/test</directory>
</testsuite>
-->
<testsuite name="tao">
<directory>tao/test</directory>
<exclude>tao/test/ThemeRegistryTest.php</exclude>
<exclude>tao/test/RestTestCase.php</exclude>
<exclude>tao/test/FsAccessTest.php</exclude>
</testsuite>
<testsuite name="taoDacSimple">
<directory>taoDacSimple/test</directory>
</testsuite>
<testsuite name="taoDelivery">
<directory>taoDelivery/test</directory>
</testsuite>
<testsuite name="taoDeliveryRdf">
<directory>taoDelivery/test</directory>
</testsuite>
<testsuite name="taoGroups">
<directory>taoGroups/test</directory>
<exclude>taoGroups/test/RestGroupsTest.php</exclude>
</testsuite>
<testsuite name="taoItems">
<directory>taoItems/test</directory>
<exclude>taoItems/test/RestItemsTest.php</exclude>
<exclude>taoItems/test/asset/LoaderTest.php</exclude>
</testsuite>
<testsuite name="taoLti">
<directory>"taoLti"/test</directory>
</testsuite>
<!--
<testsuite name="taoMediaManager">
<directory>taoMediaManager/test</directory>
</testsuite>
-->
<!--
<testsuite name="taoOpenWebItem">
<directory>taoOpenWebItem/test</directory>
<exclude>taoOpenWebItem/test/ImportExportTest.php</exclude>
<exclude>taoOpenWebItem/test/OwiExporterHandlerTest.php</exclude>
</testsuite>
-->
<testsuite name="taoOutcomeRds/">
<directory>taoOutcomeRds/test</directory>
</testsuite>
<testsuite name="taoOutcomeUi/">
<directory>taoOutcomeRds/test</directory>
</testsuite>
<!--
<testsuite name="taoProctoring">
<directory>taoProctoring/test</directory>
</testsuite>
-->
<testsuite name="taoQtiItem">
<directory>taoQtiItem/test</directory>
</testsuite>
<testsuite name="taoQtiTest">
<directory>taoQtiTest/test</directory>
<exclude>taoQtiTest/test/RestTestImportTest.php</exclude>
</testsuite>
<!--
<testsuite name="taoRevision">
<directory>taoRevision/test</directory>
</testsuite>
-->
<testsuite name="taoResultsServer">
<directory>taoResultsServer/test</directory>
<exclude>taoResultServer/test/RestResultServerTest.php</exclude>
</testsuite>
<testsuite name="taoTestTaker">
<directory>taoTestTaker/test</directory>
<exclude>taoTestTaker/test/RestTestTakerTest.php</exclude>
</testsuite>
<testsuite name="taoTests">
<directory>taoTests/test</directory>
<exclude>taoTests/test/RestTestsTest.php</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">.</directory>
<exclude>
<directory>./vendor</directory>
<directory>./data</directory>
<directory>./config</directory>
<directory>./generis/includes</directory>
<directory>./tao/lib</directory>
<directory>./**/install</directory>
<directory>./**/locales</directory>
<directory>./**/actions</directory>
<directory>./**/controller</directory>
<directory>./**/test</directory>
<directory>./tests/**</directory>
<directory>./**/sample</directory>
<directory>./**/includes</directory>
<directory>./**/scripts</directory>
<directory>./**/plugins</directory>
<directory>./**/views</directory>
<directory>./**/view</directory>
<directory suffix="index.php">.</directory>
<directory suffix="manifest.php">.</directory>
<directory suffix="conf.php">.</directory>
</exclude>
</whitelist>
</filter>
</phpunit>