Selenium: replace UserLoginPage with BlankPage where possible
[lhc/web/wiklou.git] / tests / phpunit / includes / ServiceWiringTest.php
1 <?php
2
3 /**
4 * @coversNothing
5 */
6 class ServiceWiringTest extends MediaWikiTestCase {
7 public function testServicesAreSorted() {
8 global $IP;
9 $services = array_keys( require "$IP/includes/ServiceWiring.php" );
10 $sortedServices = $services;
11 natcasesort( $sortedServices );
12
13 $this->assertSame( $sortedServices, $services,
14 'Please keep services sorted alphabetically' );
15 }
16 }