Added release notes for 'ContentHandler::runLegacyHooks' removal
[mediawiki.git] / tests / phpunit / includes / specials / SpecialBlankPageTest.php
blob7bfb861846868fb4e5c86420eec4f672daa9e3aa
1 <?php
3 /**
4 * @licence GNU GPL v2+
5 * @author Addshore
7 * @covers SpecialBlankpage
8 */
9 class SpecialBlankPageTest extends SpecialPageTestBase {
11 /**
12 * Returns a new instance of the special page under test.
14 * @return SpecialPage
16 protected function newSpecialPage() {
17 return new SpecialBlankpage();
20 public function testHasWikiMsg() {
21 list( $html, ) = $this->executeSpecialPage();
22 $this->assertContains( wfMessage( 'intentionallyblankpage' )->text(), $html );