mediawiki-extensions-Scribunto/tests/phpunit/Engines/LuaCommon/MessageLibraryTest.php
Reedy 69ed697681 Add more @covers
Bug: T320330
Change-Id: I3456453226faa3ba68be4deca764839ea0f54539
2022-10-08 20:59:33 +01:00

18 lines
442 B
PHP

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