Skin: Make skins aware of their registered skin name
[lhc/web/wiklou.git] / tests / phpunit / includes / FormOptionsInitializationTest.php
index 1531b56..0c853e0 100644 (file)
@@ -23,8 +23,6 @@ class FormOptionsExposed extends FormOptions {
  * Test class for FormOptions initialization
  * Ensure the FormOptions::add() does what we want it to do.
  *
- * Generated by PHPUnit on 2011-02-28 at 20:46:27.
- *
  * Copyright © 2011, Antoine Musso
  *
  * @author Antoine Musso
@@ -50,14 +48,14 @@ class FormOptionsInitializationTest extends MediaWikiTestCase {
        public function testAddStringOption() {
                $this->object->add( 'foo', 'string value' );
                $this->assertEquals(
-                       array(
-                               'foo' => array(
+                       [
+                               'foo' => [
                                        'default' => 'string value',
                                        'consumed' => false,
                                        'type' => FormOptions::STRING,
                                        'value' => null,
-                               )
-                       ),
+                               ]
+                       ],
                        $this->object->getOptions()
                );
        }
@@ -69,20 +67,20 @@ class FormOptionsInitializationTest extends MediaWikiTestCase {
                $this->object->add( 'one', 1 );
                $this->object->add( 'negone', -1 );
                $this->assertEquals(
-                       array(
-                               'negone' => array(
+                       [
+                               'negone' => [
                                        'default' => -1,
                                        'value' => null,
                                        'consumed' => false,
                                        'type' => FormOptions::INT,
-                               ),
-                               'one' => array(
+                               ],
+                               'one' => [
                                        'default' => 1,
                                        'value' => null,
                                        'consumed' => false,
                                        'type' => FormOptions::INT,
-                               )
-                       ),
+                               ]
+                       ],
                        $this->object->getOptions()
                );
        }