mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-14 11:15:13 +00:00
28c5a67697
Bug: T263353 Change-Id: I7ee943a262eba7d2f00fd05925676cc2351b7be9
17 lines
374 B
PHP
17 lines
374 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Math\Tests\Unit;
|
|
|
|
use MediaWiki\Extension\Math\Hooks\HookRunner;
|
|
use MediaWiki\Tests\HookContainer\HookRunnerTestBase;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\Math\Hooks\HookRunner
|
|
*/
|
|
class HookRunnerTest extends HookRunnerTestBase {
|
|
|
|
public static function provideHookRunners() {
|
|
yield HookRunner::class => [ HookRunner::class ];
|
|
}
|
|
}
|