wiki.techinc.nl/tests/phpunit/includes/specials/ImageListPagerTest.php
Umherirrender 0c8fdfe2e9 Sort services injected into specialpage pagers
Make the context source not-null

Bug: T290405
Change-Id: I20ba83caa35403a779f78c5e45af227b46dcf8f4
2022-02-10 23:15:41 +00:00

35 lines
876 B
PHP

<?php
/**
* Test class for ImageListPagerTest class.
*
* Copyright © 2013, Antoine Musso
* Copyright © 2013, Siebrand Mazeland
* Copyright © 2013, Wikimedia Foundation Inc.
*
* @group Database
*/
class ImageListPagerTest extends MediaWikiIntegrationTestCase {
/**
* @covers ImageListPager::formatValue
*/
public function testFormatValuesThrowException() {
$services = $this->getServiceContainer();
$page = new ImageListPager(
RequestContext::getMain(),
$services->getCommentStore(),
$services->getLinkRenderer(),
$services->getDBLoadBalancer(),
$services->getRepoGroup(),
$services->getUserCache(),
$services->getUserNameUtils(),
null,
'',
false,
false
);
$this->expectException( MWException::class );
$this->expectExceptionMessage( "invalid_field" );
$page->formatValue( 'invalid_field', 'invalid_value' );
}
}