Merge "DatabaseMssql: Don't duplicate body of makeList()"
[mediawiki.git] / tests / phpunit / includes / specials / ImageListPagerTest.php
blob22bdefdff35fb1bf037289a551f1b9a93b7382f0
1 <?php
2 /**
3 * Test class for ImageListPagerTest class.
5 * Copyright © 2013, Antoine Musso
6 * Copyright © 2013, Siebrand Mazeland
7 * Copyright © 2013, Wikimedia Foundation Inc.
9 * @group Database
12 class ImageListPagerTest extends MediaWikiTestCase {
13 /**
14 * @expectedException MWException
15 * @expectedExceptionMessage invalid_field
16 * @covers ImageListPager::formatValue
18 public function testFormatValuesThrowException() {
19 $page = new ImageListPager( RequestContext::getMain() );
20 $page->formatValue( 'invalid_field', 'invalid_value' );