mediawiki-extensions-Catego.../tests/phpunit/CategoryTreeServiceWiringTest.php

29 lines
636 B
PHP
Raw Normal View History

<?php
/**
* Copy of CentralAuth's CentralAuthServiceWiringTest.php
* as it could not be included as it's in another extension.
*/
use MediaWiki\MediaWikiServices;
/**
* @coversNothing
*/
class CategoryTreeServiceWiringTest extends MediaWikiIntegrationTestCase {
/**
* @dataProvider provideService
*/
public function testService( string $name ) {
MediaWikiServices::getInstance()->get( $name );
$this->addToAssertionCount( 1 );
}
public static function provideService() {
$wiring = require __DIR__ . '/../../includes/ServiceWiring.php';
foreach ( $wiring as $name => $_ ) {
yield $name => [ $name ];
}
}
}