mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-30 18:45:07 +00:00
e52a792060
Bug: T315938 Change-Id: Iffa2b409502b4269c9746e0304feb4aaee37a86e
17 lines
401 B
PHP
17 lines
401 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Notifications\Tests\Unit;
|
|
|
|
use MediaWiki\Extension\Notifications\Hooks\HookRunner;
|
|
use MediaWiki\Tests\HookContainer\HookRunnerTestBase;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\Notifications\Hooks\HookRunner
|
|
*/
|
|
class HookRunnerTest extends HookRunnerTestBase {
|
|
|
|
public static function provideHookRunners() {
|
|
yield HookRunner::class => [ HookRunner::class ];
|
|
}
|
|
}
|