123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?php
- /*
- * This file is part of the PHP CS utility.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace Symfony\CS\Tests\Fixer\PSR2;
- use Symfony\CS\Tests\Fixer\AbstractFixerTestBase;
- /**
- * @author Kuanhung Chen <ericj.tw@gmail.com>
- */
- class MethodArgumentSpaceFixerTest extends AbstractFixerTestBase
- {
- /**
- * @dataProvider testFixProvider
- */
- public function testFix($expected, $input = null)
- {
- $this->makeTest($expected, $input);
- }
- public function testFixProvider()
- {
- return array(
- // test method arguments
- array(
- '<?php function xyz($a=10, $b=20, $c=30) {}',
- '<?php function xyz($a=10,$b=20,$c=30) {}',
- ),
- // test method call
- array(
- '<?php xyz($a=10, $b=20, $c=30);',
- '<?php xyz($a=10 ,$b=20,$c=30);',
- ),
- // test method call
- array(
- '<?php xyz($a=10, $b=20, $this->foo(), $c=30);',
- '<?php xyz($a=10,$b=20 ,$this->foo() ,$c=30);',
- ),
- // test receiving data in list context with omitted values
- array(
- '<?php list($a, $b, , , $c) = foo();',
- '<?php list($a, $b,, ,$c) = foo();',
- ),
- // skip array
- array(
- '<?php array(10 , 20 ,30);',
- ),
- // list call with trailing comma
- array(
- '<?php list($path, $mode, ) = foo();',
- '<?php list($path, $mode,) = foo();',
- ),
- // multi line testing method arguments
- array(
- '<?php function xyz(
- $a=10,
- $b=20,
- $c=30) {
- }',
- '<?php function xyz(
- $a=10 ,
- $b=20,
- $c=30) {
- }',
- ),
- // multi line testing method call
- array(
- '<?php xyz(
- $a=10,
- $b=20,
- $c=30
- );',
- '<?php xyz(
- $a=10 ,
- $b=20,
- $c=30
- );',
- ),
- // skip multi line array
- array(
- '<?php
- array(
- 10 ,
- 20,
- 30
- );',
- ),
- // skip short array
- array(
- '<?php
- $foo = ["a"=>"apple", "b"=>"bed" ,"c"=>"car"];
- $foo = ["a" ,"b" ,"c"];
- ',
- ),
- // don't change HEREDOC and NOWDOC
- array(
- "<?php
- \$this->foo(
- <<<EOTXTa
- heredoc
- EOTXTa
- ,
- <<<'EOTXTb'
- nowdoc
- EOTXTb
- ,
- 'foo'
- );
- ",
- ),
- );
- }
- }
|