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

15 lines
347 B
PHP

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