12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- declare(strict_types=1);
- /*
- * 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;
- /**
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\CastNotation\NoShortBoolCastFixer
- *
- * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\CastNotation\NoShortBoolCastFixer>
- */
- final class NoShortBoolCastFixerTest extends AbstractFixerTestCase
- {
- /**
- * @dataProvider provideFixCases
- */
- public function testFix(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- /**
- * @return iterable<array{string, string}>
- */
- public static function provideFixCases(): iterable
- {
- yield [
- '<?php
- $c = // lala
- // cc
- (bool)$content;',
- '<?php
- $c = ! // lala
- // cc
- !$content;',
- ];
- yield [
- '<?php
- $a = \'0\';
- $b = /*
- */(bool)$a;',
- '<?php
- $a = \'0\';
- $b = !/*
- */!$a;',
- ];
- yield [
- '<?php
- function foo($a, $b) {
- $c = (bool)$a;
- $d = !$a;
- $d1 = ! $a;
- $d2 = !$a;
- $b = !(!$foo);
- echo \'!!\'; // !! ! !
- $c = (bool) $b;
- $e = (bool) $d1;
- return (bool) $a;
- }
- ',
- '<?php
- function foo($a, $b) {
- $c = !!$a;
- $d = !$a;
- $d1 = ! $a;
- $d2 = !$a;
- $b = !(!$foo);
- echo \'!!\'; // !! ! !
- $c = ! ! $b;
- $e = !
- ! $d1;
- return !! $a;
- }
- ',
- ];
- }
- }
|