mediawiki-extensions-Scribunto/tests/phpunit/Engines/LuaCommon/LuaEngineTestSkip.php
Reedy 1eecdac6de Capitalise Engines folder
Change-Id: I6d730d67decc859fd130fee5ec92b1cfb8d9ef64
2022-09-30 00:58:27 +00:00

32 lines
652 B
PHP

<?php
class LuaEngineTestSkip extends PHPUnit\Framework\TestCase {
/** @var string */
private $className;
/** @var string */
private $message;
/**
* @param string $className Class being skipped
* @param string $message Skip message
*/
public function __construct( $className = '', $message = '' ) {
$this->className = $className;
$this->message = $message;
parent::__construct( 'testDummy' );
}
public function testDummy() {
if ( $this->className ) {
$this->markTestSkipped( $this->message );
} else {
// Dummy
$this->assertTrue( true );
}
}
public function toString(): string {
return $this->className;
}
}