mediawiki-extensions-Echo/tests/phpunit/unit/HookRunnerTest.php
Umherirrender e52a792060 Create HookRunner class and the hook handler interfaces
Bug: T315938
Change-Id: Iffa2b409502b4269c9746e0304feb4aaee37a86e
2023-08-06 10:30:46 +00:00

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 ];
}
}