Make the context source not-null Bug: T290405 Change-Id: I20ba83caa35403a779f78c5e45af227b46dcf8f4
35 lines
876 B
PHP
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' );
|
|
}
|
|
}
|