mediawiki-extensions-Scribunto/tests/phpunit/engines/LuaCommon/HtmlLibraryTest.php
Umherirrender 44fe3df9bf Rename test classes to end with Test
Change-Id: I510e5516d56b28d26510423da840b4b496a10833
2018-03-10 14:25:38 +01:00

27 lines
707 B
PHP

<?php
// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
class Scribunto_LuaHtmlLibraryTest extends Scribunto_LuaEngineTestBase {
protected static $moduleName = 'HtmlLibraryTests';
protected function setUp() {
parent::setUp();
// For strip marker test
$markers = [
'nowiki' => Parser::MARKER_PREFIX . '-test-nowiki-' . Parser::MARKER_SUFFIX,
];
$interpreter = $this->getEngine()->getInterpreter();
$interpreter->callFunction(
$interpreter->loadString( 'mw.html.stripMarkers = ...', 'fortest' ),
$markers
);
}
protected function getTestModules() {
return parent::getTestModules() + [
'HtmlLibraryTests' => __DIR__ . '/HtmlLibraryTests.lua',
];
}
}