X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2FFormOptionsInitializationTest.php;h=0c853e0833e0160c45e14f5cb745d7f5c9af909d;hb=546980e537b8580e197c63da20976dbd3ae5c27b;hp=1531b5695b1324ad1a37d1fef6472f102649f027;hpb=51f2a693af7523bc055e31e4c1b3ddd766a3e9de;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/phpunit/includes/FormOptionsInitializationTest.php b/tests/phpunit/includes/FormOptionsInitializationTest.php index 1531b5695b..0c853e0833 100644 --- a/tests/phpunit/includes/FormOptionsInitializationTest.php +++ b/tests/phpunit/includes/FormOptionsInitializationTest.php @@ -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() ); }