I don't think these do anything with the documentation generators we currently use. Especially not in tests. How are tests part of a "package" when the code is not? Note how most of these are simply identical to the namespace. They are most probably auto-generated by some IDEs but don't actually mean anything. Change-Id: I771b5f2041a8e3b077865c79cbebddbe028543d1
22 lines
659 B
PHP
22 lines
659 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Tests\HookContainer;
|
|
|
|
use MediaWiki\Api\ApiHookRunner;
|
|
use MediaWiki\HookContainer\HookRunner;
|
|
use MediaWiki\ResourceLoader as RL;
|
|
|
|
/**
|
|
* Tests that all arguments passed into HookRunner are passed along to HookContainer.
|
|
* @covers \MediaWiki\HookContainer\HookRunner
|
|
* @covers \MediaWiki\Api\ApiHookRunner
|
|
* @covers \MediaWiki\ResourceLoader\HookRunner
|
|
*/
|
|
class HookRunnerTest extends HookRunnerTestBase {
|
|
|
|
public static function provideHookRunners() {
|
|
yield ApiHookRunner::class => [ ApiHookRunner::class ];
|
|
yield HookRunner::class => [ HookRunner::class ];
|
|
yield RL\HookRunner::class => [ RL\HookRunner::class ];
|
|
}
|
|
}
|