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

36 lines
995 B
PHP

<?php
namespace MediaWiki\Extension\Scribunto\Tests\Engines\LuaStandalone;
use MediaWiki\Extension\Scribunto\Tests\Engines\LuaCommon\LuaEngineUnitTestBase;
/**
* @covers \MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneEngine
*/
class StandaloneTest extends LuaEngineUnitTestBase {
/** @inheritDoc */
protected static $moduleName = 'StandaloneTests';
public static function suite( $className ) {
return self::makeSuite( $className, 'LuaStandalone' );
}
protected function setUp(): void {
parent::setUp();
$interpreter = $this->getEngine()->getInterpreter();
$func = $interpreter->wrapPhpFunction( static function ( $v ) {
return [ preg_replace( '/\s+/', ' ', trim( var_export( $v, 1 ) ) ) ];
} );
$interpreter->callFunction(
$interpreter->loadString( 'mw.var_export = ...', 'fortest' ), $func
);
}
protected function getTestModules() {
return parent::getTestModules() + [
'StandaloneTests' => __DIR__ . '/StandaloneTests.lua',
];
}
}