mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/LoginNotify
synced 2024-12-04 03:18:29 +00:00
17 lines
335 B
PHP
17 lines
335 B
PHP
|
<?php
|
||
|
|
||
|
namespace LoginNotify\Tests\Unit;
|
||
|
|
||
|
use LoginNotify\Hooks\HookRunner;
|
||
|
use MediaWiki\Tests\HookContainer\HookRunnerTestBase;
|
||
|
|
||
|
/**
|
||
|
* @covers \LoginNotify\Hooks\HookRunner
|
||
|
*/
|
||
|
class HookRunnerTest extends HookRunnerTestBase {
|
||
|
|
||
|
public static function provideHookRunners() {
|
||
|
yield HookRunner::class => [ HookRunner::class ];
|
||
|
}
|
||
|
}
|