forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
30 lines (26 loc) · 914 Bytes
/
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
<phpunit
bootstrap="lib/phpunit/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
backupGlobals="false"
backupStaticAttributes="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
strict="false"
verbose="false"
>
<!--All core suites need to be added manually here-->
<testsuites>
<testsuite name="core_lib">
<directory suffix="_test.php">lib/tests</directory>
</testsuite>
</testsuites>
<!--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_suits_start@-->
<!--@plugin_suits_end@-->
</phpunit>