X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2Fparser%2FMagicVariableTest.php;h=6a2afad6d7fc66a29511130f03021402d681bbdc;hb=237d3271fd313ebe09858a5c442a91216a7b61cf;hp=cd54a9e3c088848da3cd6244af33386caf14a582;hpb=96366c1cf1966ca07e8f0b4361bbca28bfaf43a0;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/phpunit/includes/parser/MagicVariableTest.php b/tests/phpunit/includes/parser/MagicVariableTest.php index cd54a9e3c0..6a2afad6d7 100644 --- a/tests/phpunit/includes/parser/MagicVariableTest.php +++ b/tests/phpunit/includes/parser/MagicVariableTest.php @@ -27,20 +27,20 @@ class MagicVariableTest extends MediaWikiTestCase { * them as integer. * @see MagicVariableTest::assertMagic() */ - private $expectedAsInteger = array( + private $expectedAsInteger = [ 'revisionday', 'revisionmonth1', - ); + ]; /** setup a basic parser object */ protected function setUp() { parent::setUp(); $contLang = Language::factory( 'en' ); - $this->setMwGlobals( array( + $this->setMwGlobals( [ 'wgLanguageCode' => 'en', 'wgContLang' => $contLang, - ) ); + ] ); $this->testParser = new Parser(); $this->testParser->Options( ParserOptions::newFromUserAndLang( new User, $contLang ) ); @@ -62,9 +62,9 @@ class MagicVariableTest extends MediaWikiTestCase { * @return array Array of numbers from 1 up to $num */ private static function createProviderUpTo( $num ) { - $ret = array(); + $ret = []; for ( $i = 1; $i <= $num; $i++ ) { - $ret[] = array( $i ); + $ret[] = [ $i ]; } return $ret; @@ -84,7 +84,7 @@ class MagicVariableTest extends MediaWikiTestCase { return self::createProviderUpTo( 31 ); } - ############### TESTS ############################################# + # ############## TESTS ############################################# # @todo FIXME: # - those got copy pasted, we can probably make them cleaner # - tests are lacking useful messages @@ -157,7 +157,7 @@ class MagicVariableTest extends MediaWikiTestCase { $this->assertUnPadded( 'revisionmonth1', $month ); } - ############### HELPERS ############################################ + # ############## HELPERS ############################################ /** assertion helper expecting a magic output which is zero padded */ public function assertZeroPadded( $magic, $value ) { @@ -189,7 +189,7 @@ class MagicVariableTest extends MediaWikiTestCase { ); # please keep the following commented line of code. It helps debugging. - //print "\nDEBUG (value $value):" . sprintf( '2010%02d%02d123456', $value, $value ) . "\n"; + // print "\nDEBUG (value $value):" . sprintf( '2010%02d%02d123456', $value, $value ) . "\n"; # format expectation and test it $expected = sprintf( $format, $value );