Fix enhanced RC data attribute sanitizing
[lhc/web/wiklou.git] / tests / phpunit / includes / title / ForeignTitleTest.php
index 599d2a3..b6c2427 100644 (file)
 class ForeignTitleTest extends MediaWikiTestCase {
 
        public function basicProvider() {
-               return array(
-                       array(
+               return [
+                       [
                                new ForeignTitle( 20, 'Contributor', 'JohnDoe' ),
                                20, 'Contributor', 'JohnDoe'
-                       ),
-                       array(
+                       ],
+                       [
                                new ForeignTitle( '1', 'Discussion', 'Capital' ),
                                1, 'Discussion', 'Capital'
-                       ),
-                       array(
+                       ],
+                       [
                                new ForeignTitle( 0, '', 'MainNamespace' ),
                                0, '', 'MainNamespace'
-                       ),
-                       array(
+                       ],
+                       [
                                new ForeignTitle( 4, 'Some ns', 'Article title with spaces' ),
                                4, 'Some_ns', 'Article_title_with_spaces'
-                       ),
-               );
+                       ],
+               ];
        }
 
        /**
@@ -59,7 +59,7 @@ class ForeignTitleTest extends MediaWikiTestCase {
                $this->assertEquals( $expectedText, $title->getText() );
        }
 
-       public function testUnknownNamespaceCheck( ) {
+       public function testUnknownNamespaceCheck() {
                $title = new ForeignTitle( null, 'this', 'that' );
 
                $this->assertEquals( false, $title->isNamespaceIdKnown() );
@@ -67,31 +67,31 @@ class ForeignTitleTest extends MediaWikiTestCase {
                $this->assertEquals( 'that', $title->getText() );
        }
 
-       public function testUnknownNamespaceError( ) {
+       public function testUnknownNamespaceError() {
                $this->setExpectedException( 'MWException' );
                $title = new ForeignTitle( null, 'this', 'that' );
                $title->getNamespaceId();
        }
 
        public function fullTextProvider() {
-               return array(
-                       array(
+               return [
+                       [
                                new ForeignTitle( 20, 'Contributor', 'JohnDoe' ),
                                'Contributor:JohnDoe'
-                       ),
-                       array(
+                       ],
+                       [
                                new ForeignTitle( '1', 'Discussion', 'Capital' ),
                                'Discussion:Capital'
-                       ),
-                       array(
+                       ],
+                       [
                                new ForeignTitle( 0, '', 'MainNamespace' ),
                                'MainNamespace'
-                       ),
-                       array(
+                       ],
+                       [
                                new ForeignTitle( 4, 'Some ns', 'Article title with spaces' ),
                                'Some_ns:Article_title_with_spaces'
-                       ),
-               );
+                       ],
+               ];
        }
 
        /**