-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml.dist
117 lines (111 loc) · 4.87 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
111
112
113
114
115
116
117
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="lib/phpunit/phpunit.xsd"
bootstrap="lib/phpunit/bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
backupGlobals="false"
backupStaticAttributes="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
strict="false"
printerClass="Hint_ResultPrinter"
>
<php>
<!--<const name="PHPUNIT_LONGTEST" value="1"/> uncomment to execute also slow or otherwise expensive tests-->
</php>
<!--All core suites need to be manually added here-->
<testsuites>
<testsuite name="core_phpunit">
<directory suffix="_test.php">lib/phpunit/tests</directory>
</testsuite>
<testsuite name="core_test">
<directory suffix="_test.php">lib/testing/tests</directory>
</testsuite>
<testsuite name="core_db">
<directory suffix="_test.php">lib/ddl/tests</directory>
<directory suffix="_test.php">lib/dml/tests</directory>
</testsuite>
<testsuite name="core_lib">
<directory suffix="_test.php">lib/tests</directory>
<directory suffix="_test.php">lib/ajax/tests</directory>
<directory suffix="_test.php">lib/form/tests</directory>
<directory>lib/password_compat/tests</directory>
</testsuite>
<testsuite name="core_files">
<directory suffix="_test.php">lib/filestorage/tests</directory>
</testsuite>
<testsuite name="core_cohort">
<directory suffix="_test.php">cohort/tests</directory>
</testsuite>
<testsuite name="core_grade">
<directory suffix="_test.php">lib/grade/tests</directory>
<directory suffix="_test.php">grade/tests</directory>
<directory suffix="_test.php">grade/grading/tests</directory>
</testsuite>
<testsuite name="core_backup">
<directory suffix="_test.php">backup/controller/tests</directory>
<directory suffix="_test.php">backup/converter/moodle1/tests</directory>
<directory suffix="_test.php">backup/util</directory>
</testsuite>
<testsuite name="core_badges">
<directory suffix="_test.php">badges/tests</directory>
</testsuite>
<testsuite name="core_blog">
<directory suffix="_test.php">blog/tests</directory>
</testsuite>
<testsuite name="core_iplookup">
<directory suffix="_test.php">iplookup/tests</directory>
</testsuite>
<testsuite name="core_course">
<directory suffix="_test.php">course/tests</directory>
</testsuite>
<testsuite name="core_question">
<directory suffix="_test.php">question/engine/tests</directory>
<directory suffix="_test.php">question/tests</directory>
<directory suffix="_test.php">question/type/tests</directory>
<directory suffix="_test.php">question/engine/upgrade/tests</directory>
</testsuite>
<testsuite name="core_cache">
<directory suffix="_test.php">cache/tests</directory>
</testsuite>
<testsuite name="core_calendar">
<directory suffix="_test.php">calendar/tests</directory>
</testsuite>
<testsuite name="core_enrol">
<directory suffix="_test.php">enrol/tests</directory>
</testsuite>
<testsuite name="core_group">
<directory suffix="_test.php">group/tests</directory>
</testsuite>
<testsuite name="core_external">
<directory suffix="_test.php">lib/external/tests</directory>
</testsuite>
<testsuite name="core_message">
<directory suffix="_test.php">message/tests</directory>
</testsuite>
<testsuite name="core_notes">
<directory suffix="_test.php">notes/tests</directory>
</testsuite>
<testsuite name="core_rating">
<directory suffix="_test.php">rating/tests</directory>
</testsuite>
<testsuite name="core_repository">
<directory suffix="_test.php">repository/tests</directory>
</testsuite>
<testsuite name="core_user">
<directory suffix="_test.php">user/tests</directory>
</testsuite>
<testsuite name="core_webservice">
<directory suffix="_test.php">webservice/tests</directory>
</testsuite>
<!--Plugin suites: use admin/tool/phpunit/cli/util.php to build phpunit.xml from phpunit.xml.dist with up-to-date list of plugins in current install-->
<!--@plugin_suites_start@-->
<!--@plugin_suites_end@-->
</testsuites>
</phpunit>