MDL-20438 admin/index.php now respects required maturity setting
[moodle.git] / phpunit.xml.dist
blob7d7e212701fd1b5e34219e4e33087d11b93f2993
1 <phpunit
2         bootstrap="lib/phpunit/bootstrap.php"
3         colors="true"
4         convertErrorsToExceptions="true"
5         convertNoticesToExceptions="true"
6         convertWarningsToExceptions="true"
7         processIsolation="false"
8         backupGlobals="false"
9         backupStaticAttributes="false"
10         stopOnError="false"
11         stopOnFailure="false"
12         stopOnIncomplete="false"
13         stopOnSkipped="false"
14         strict="false"
15         verbose="false"
16         >
18 <!--All core suites need to be manually added here-->
20     <testsuites>
21         <testsuite name="core_lib">
22             <directory suffix="_test.php">lib/tests</directory>
23         </testsuite>
24     </testsuites>
26 <!--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-->
27 <!--@plugin_suites_start@-->
28 <!--@plugin_suites_end@-->
30 </phpunit>