mediawiki-extensions-Scribunto/tests/phpunit/Engines/LuaCommon/LibraryUtilTest.php

18 lines
373 B
PHP
Raw Normal View History

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