MDL-76583 core_external: Add new core_external subsystem

This commit is contained in:
Andrew Nicols 2022-12-07 10:28:07 +08:00
parent 5dbac075be
commit 4a2793002c
3 changed files with 5 additions and 4 deletions

View File

@ -73,6 +73,7 @@
"edufields": null,
"enrol": "enrol",
"error": null,
"external": "lib/external",
"favourites": "favourites",
"filepicker": null,
"fileconverter": "files\/converter",

View File

@ -31,7 +31,7 @@ class component_test extends advanced_testcase {
* this is defined here to annoy devs that try to add more without any thinking,
* always verify that it does not collide with any existing add-on modules and subplugins!!!
*/
const SUBSYSTEMCOUNT = 75;
const SUBSYSTEMCOUNT = 76;
public function setUp(): void {
$psr0namespaces = new ReflectionProperty('core_component', 'psr0namespaces');

View File

@ -49,6 +49,9 @@
<directory suffix="_test.php">lib/tests</directory>
<!-- <directory suffix="_test.php">lib/ajax/tests</directory> -->
</testsuite>
<testsuite name="core_external_testsuite">
<directory suffix="_test.php">lib/external/tests</directory>
</testsuite>
<testsuite name="core_favourites_testsuite">
<directory suffix="_test.php">favourites/tests</directory>
</testsuite>
@ -127,9 +130,6 @@
<testsuite name="core_group_testsuite">
<directory suffix="_test.php">group/tests</directory>
</testsuite>
<testsuite name="core_external_testsuite">
<directory suffix="_test.php">lib/external/tests</directory>
</testsuite>
<testsuite name="core_message_testsuite">
<directory suffix="_test.php">message/tests</directory>
</testsuite>