wiki.techinc.nl/tests/phpunit/includes/specials/ImageListPagerTest.php
Amir Sarabadani 830c51f0a2 Specials: Mass switch everything to IConnectionProvider from LB
Bug: T330641
Change-Id: Ie1772da59f92213fea598f02385c3e0ac6d200a7
2023-04-19 19:19:16 +02:00

36 lines
920 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->getDBLoadBalancerFactory(),
$services->getRepoGroup(),
$services->getUserCache(),
$services->getUserNameUtils(),
$services->getCommentFormatter(),
null,
'',
false,
false
);
$this->expectException( MWException::class );
$this->expectExceptionMessage( "invalid_field" );
$page->formatValue( 'invalid_field', 'invalid_value' );
}
}