wiki.techinc.nl/tests/phpunit/includes/specials/ImageListPagerTest.php
Petr Pchelko eb4e26bc03 Use Authority in special pages pagers
Change-Id: I01eccaab42759c186649d69c104318e05e91157a
2021-02-23 14:29:10 -07:00

37 lines
912 B
PHP

<?php
use MediaWiki\MediaWikiServices;
/**
* 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 = MediaWikiServices::getInstance();
$page = new ImageListPager(
RequestContext::getMain(),
null,
'',
false,
false,
$services->getLinkRenderer(),
$services->getRepoGroup(),
$services->getDBLoadBalancer(),
$services->getCommentStore(),
$services->getActorMigration(),
UserCache::singleton()
);
$this->expectException( MWException::class );
$this->expectExceptionMessage( "invalid_field" );
$page->formatValue( 'invalid_field', 'invalid_value' );
}
}