1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\Fixer\CastNotation;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- /**
- * @author SpacePossum
- *
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\CastNotation\LowercaseCastFixer
- */
- final class LowercaseCastFixerTest extends AbstractFixerTestCase
- {
- /**
- * @param string $expected
- * @param null|string $input
- *
- * @dataProvider provideFixCases
- */
- public function testFix($expected, $input = null)
- {
- $this->doTest($expected, $input);
- }
- public function provideFixCases()
- {
- $cases = [];
- foreach (['boolean', 'bool', 'integer', 'int', 'double', 'float', 'real', 'float', 'string', 'array', 'object', 'unset', 'binary'] as $from) {
- $cases[] =
- [
- sprintf('<?php $b= (%s)$d;', $from),
- sprintf('<?php $b= (%s)$d;', strtoupper($from)),
- ];
- $cases[] =
- [
- sprintf('<?php $b=( %s) $d;', $from),
- sprintf('<?php $b=( %s) $d;', ucfirst($from)),
- ];
- $cases[] =
- [
- sprintf('<?php $b=(%s ) $d;', $from),
- sprintf('<?php $b=(%s ) $d;', strtoupper($from)),
- ];
- $cases[] =
- [
- sprintf('<?php $b=( %s ) $d;', $from),
- sprintf('<?php $b=( %s ) $d;', ucfirst($from)),
- ];
- }
- return $cases;
- }
- }
|