mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeEditor
synced 2024-11-15 03:23:45 +00:00
4d6a470aae
Bug: T271013 Change-Id: Ie8e152530599d11da12cb9272a3b757da1cca1ab
17 lines
392 B
PHP
17 lines
392 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\CodeEditor\Tests\Unit;
|
|
|
|
use MediaWiki\Extension\CodeEditor\Hooks\HookRunner;
|
|
use MediaWiki\Tests\HookContainer\HookRunnerTestBase;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\CodeEditor\Hooks\HookRunner
|
|
*/
|
|
class HookRunnerTest extends HookRunnerTestBase {
|
|
|
|
public static function provideHookRunners() {
|
|
yield HookRunner::class => [ HookRunner::class ];
|
|
}
|
|
}
|