Commit | Line | Data |
---|---|---|
6aaae357 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
5bd40408 | 2 | <phpunit |
6aaae357 PS |
3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | xsi:noNamespaceSchemaLocation="lib/phpunit/phpunit.xsd" | |
5bd40408 | 5 | bootstrap="lib/phpunit/bootstrap.php" |
5bd40408 PS |
6 | convertErrorsToExceptions="true" |
7 | convertNoticesToExceptions="true" | |
8 | convertWarningsToExceptions="true" | |
9 | processIsolation="false" | |
10 | backupGlobals="false" | |
11 | backupStaticAttributes="false" | |
12 | stopOnError="false" | |
13 | stopOnFailure="false" | |
14 | stopOnIncomplete="false" | |
15 | stopOnSkipped="false" | |
16 | strict="false" | |
17 | verbose="false" | |
18 | > | |
19 | ||
7aea08e1 | 20 | <!--All core suites need to be manually added here--> |
5bd40408 PS |
21 | |
22 | <testsuites> | |
fe11e694 PS |
23 | <testsuite name="core_db"> |
24 | <directory suffix="_test.php">lib/ddl/tests</directory> | |
25 | <directory suffix="_test.php">lib/dml/tests</directory> | |
26 | </testsuite> | |
5bd40408 PS |
27 | <testsuite name="core_lib"> |
28 | <directory suffix="_test.php">lib/tests</directory> | |
a3d5830a | 29 | <directory suffix="_test.php">lib/ajax/tests</directory> |
4b027431 | 30 | <directory suffix="_test.php">lib/form/tests</directory> |
a3d5830a | 31 | </testsuite> |
948d46da PS |
32 | <testsuite name="core_grade"> |
33 | <directory suffix="_test.php">lib/grade/tests</directory> | |
34 | <directory suffix="_test.php">grade/tests</directory> | |
35 | <directory suffix="_test.php">grade/grading/tests</directory> | |
36 | </testsuite> | |
dbf5a447 PS |
37 | <testsuite name="core_backup"> |
38 | <directory suffix="_test.php">backup/controller/tests</directory> | |
39 | <directory suffix="_test.php">backup/converter/moodle1/tests</directory> | |
40 | <directory suffix="_test.php">backup/util</directory> | |
41 | </testsuite> | |
1cbf2a20 PS |
42 | <testsuite name="core_blog"> |
43 | <directory suffix="_test.php">blog/tests</directory> | |
44 | </testsuite> | |
354b214c PS |
45 | <testsuite name="core_course"> |
46 | <directory suffix="_test.php">course/tests</directory> | |
47 | </testsuite> | |
5bd40408 | 48 | |
a3d5830a | 49 | <!--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--> |
7aea08e1 SH |
50 | <!--@plugin_suites_start@--> |
51 | <!--@plugin_suites_end@--> | |
5bd40408 | 52 | |
a3d5830a PS |
53 | </testsuites> |
54 | ||
5bd40408 | 55 | </phpunit> |