MediaWiki REL1_34
BaseBlacklistTest.php
Go to the documentation of this file.
1<?php
2
25class BaseBlacklistTest extends MediaWikiTestCase {
26
30 public static function provideGetTypeFromTitle() {
31 return [
32 [ 'MediaWiki:Spam-blacklist', 'spam' ],
33 [ 'MediaWiki:Spam-whitelist', 'spam' ],
34 [ 'MediaWiki:Email-whitelist', 'email' ],
35 [ 'MediaWiki:Email-blacklist', 'email' ],
36 [ 'MediaWiki:A random page', false ],
37 [ 'Another random page', false ],
38 ];
39 }
40
46 public function testGetTypeFromTitle( $title, $expected ) {
47 $title = Title::newFromText( $title );
49 $this->assertEquals( $expected, $output );
50 }
51}
@covers BaseBlacklist
testGetTypeFromTitle( $title, $expected)
@dataProvider provideGetTypeFromTitle
static getTypeFromTitle(Title $title)
Returns the type of blacklist from the given title.