Merge "Fix the bug for dates between 1912 and 1941 in Thai language"
[lhc/web/wiklou.git] / tests / phpunit / includes / specials / SpecialBlankPageTest.php
1 <?php
2
3 /**
4 * @license GPL-2.0-or-later
5 * @author Addshore
6 *
7 * @covers SpecialBlankpage
8 */
9 class SpecialBlankPageTest extends SpecialPageTestBase {
10
11 /**
12 * Returns a new instance of the special page under test.
13 *
14 * @return SpecialPage
15 */
16 protected function newSpecialPage() {
17 return new SpecialBlankpage();
18 }
19
20 public function testHasWikiMsg() {
21 list( $html, ) = $this->executeSpecialPage();
22 $this->assertContains( wfMessage( 'intentionallyblankpage' )->text(), $html );
23 }
24
25 }