mediawiki-extensions-Scribunto/tests/phpunit/Engines/LuaCommon/MessageLibraryTest.php
Reedy 408f4d0bc6 Namespace tests
Change-Id: I4977bf534400643f83ab3400c3dfd736c53f9705
2022-09-30 00:59:00 +00:00

15 lines
359 B
PHP

<?php
namespace MediaWiki\Extension\Scribunto\Tests\Engines\LuaCommon;
class MessageLibraryTest extends LuaEngineUnitTestBase {
/** @inheritDoc */
protected static $moduleName = 'MessageLibraryTests';
protected function getTestModules() {
return parent::getTestModules() + [
'MessageLibraryTests' => __DIR__ . '/MessageLibraryTests.lua',
];
}
}