123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- <?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\PhpUnit;
- use PhpCsFixer\Fixer\PhpUnit\PhpUnitTargetVersion;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- /**
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\PhpUnit\PhpUnitNamespacedFixer
- */
- final class PhpUnitNamespacedFixerTest extends AbstractFixerTestCase
- {
- /**
- * @param string $expected
- * @param null|string $input
- * @param array $config
- *
- * @dataProvider provideTestFixCases
- */
- public function testFix($expected, $input = null, array $config = [])
- {
- $this->fixer->configure($config);
- $this->doTest($expected, $input);
- }
- public function provideTestFixCases()
- {
- return [
- [
- '<?php
- final class MyTest extends \PHPUnit\Framework\TestCase
- {
- }',
- '<?php
- final class MyTest extends \PHPUnit_Framework_TestCase
- {
- }',
- ],
- [
- '<?php
- final class TextDiffTest extends PHPUnit\Framework\TestCase
- {
- }',
- '<?php
- final class TextDiffTest extends PHPUnit_Framework_TestCase
- {
- }',
- ],
- [
- '<?php
- use \PHPUnit\Framework\TestCase;
- final class TextDiffTest extends TestCase
- {
- }',
- '<?php
- use \PHPUnit_Framework_TestCase;
- final class TextDiffTest extends PHPUnit_Framework_TestCase
- {
- }',
- ],
- [
- '<?php
- use \PHPUnit\FRAMEWORK\TestCase as TestAlias;
- final class TextDiffTest extends TestAlias
- {
- }',
- '<?php
- use \PHPUnit_FRAMEWORK_TestCase as TestAlias;
- final class TextDiffTest extends TestAlias
- {
- }',
- ],
- [
- '<?php
- namespace Foo;
- use PHPUnit\Framework\TestCase;
- final class TextDiffTest extends TestCase
- {
- }',
- '<?php
- namespace Foo;
- use PHPUnit_Framework_TestCase;
- final class TextDiffTest extends PHPUnit_Framework_TestCase
- {
- }',
- ],
- [
- '<?php
- namespace Foo;
- use PHPUnit\Framework\TestCase as TestAlias;
- final class TextDiffTest extends TestAlias
- {
- }',
- '<?php
- namespace Foo;
- use PHPUnit_Framework_TestCase as TestAlias;
- final class TextDiffTest extends TestAlias
- {
- }',
- ],
- [
- '<?php
- final class MyTest extends \PHPUnit\Framework\TestCase
- {
- public function aaa()
- {
- $a = new PHPUnit_Framework_Assert();
- $b = new PHPUnit_Framework_BaseTestListener();
- $c = new PHPUnit_Framework_TestListener();
- $d1 = new PHPUnit_Aaa();
- $d2 = new PHPUnit_Aaa_Bbb();
- $d3 = new PHPUnit_Aaa_Bbb_Ccc();
- $d4 = new PHPUnit_Aaa_Bbb_Ccc_Ddd();
- $d5 = new PHPUnit_Aaa_Bbb_Ccc_Ddd_Eee();
- }
- }',
- '<?php
- final class MyTest extends \PHPUnit_Framework_TestCase
- {
- public function aaa()
- {
- $a = new PHPUnit_Framework_Assert();
- $b = new PHPUnit_Framework_BaseTestListener();
- $c = new PHPUnit_Framework_TestListener();
- $d1 = new PHPUnit_Aaa();
- $d2 = new PHPUnit_Aaa_Bbb();
- $d3 = new PHPUnit_Aaa_Bbb_Ccc();
- $d4 = new PHPUnit_Aaa_Bbb_Ccc_Ddd();
- $d5 = new PHPUnit_Aaa_Bbb_Ccc_Ddd_Eee();
- }
- }',
- ['target' => PhpUnitTargetVersion::VERSION_4_8],
- ],
- [
- '<?php
- final class MyTest extends \PHPUnit\Framework\TestCase
- {
- public function aaa()
- {
- $a = new PHPUnit\Framework\Assert();
- $b = new PHPUnit\Framework\BaseTestListener();
- $c = new PHPUnit\Framework\TestListener();
- $d1 = new PHPUnit_Aaa();
- $d2 = new PHPUnit_Aaa_Bbb();
- $d3 = new PHPUnit_Aaa_Bbb_Ccc();
- $d4 = new PHPUnit_Aaa_Bbb_Ccc_Ddd();
- $d5 = new PHPUnit_Aaa_Bbb_Ccc_Ddd_Eee();
- }
- }',
- '<?php
- final class MyTest extends \PHPUnit_Framework_TestCase
- {
- public function aaa()
- {
- $a = new PHPUnit_Framework_Assert();
- $b = new PHPUnit_Framework_BaseTestListener();
- $c = new PHPUnit_Framework_TestListener();
- $d1 = new PHPUnit_Aaa();
- $d2 = new PHPUnit_Aaa_Bbb();
- $d3 = new PHPUnit_Aaa_Bbb_Ccc();
- $d4 = new PHPUnit_Aaa_Bbb_Ccc_Ddd();
- $d5 = new PHPUnit_Aaa_Bbb_Ccc_Ddd_Eee();
- }
- }',
- ['target' => PhpUnitTargetVersion::VERSION_5_7],
- ],
- [
- '<?php
- final class MyTest extends \PHPUnit\Framework\TestCase
- {
- public function aaa()
- {
- $a = new PHPUnit\Framework\Assert();
- $b = new PHPUnit\Framework\BaseTestListener();
- $c = new PHPUnit\Framework\TestListener();
- $d1 = new PHPUnit\Aaa();
- $d2 = new PHPUnit\Aaa\Bbb();
- $d3 = new PHPUnit\Aaa\Bbb\Ccc();
- $d4 = new PHPUnit\Aaa\Bbb\Ccc\Ddd();
- $d5 = new PHPUnit\Aaa\Bbb\Ccc\Ddd\Eee();
- }
- }',
- '<?php
- final class MyTest extends \PHPUnit_Framework_TestCase
- {
- public function aaa()
- {
- $a = new PHPUnit_Framework_Assert();
- $b = new PHPUnit_Framework_BaseTestListener();
- $c = new PHPUnit_Framework_TestListener();
- $d1 = new PHPUnit_Aaa();
- $d2 = new PHPUnit_Aaa_Bbb();
- $d3 = new PHPUnit_Aaa_Bbb_Ccc();
- $d4 = new PHPUnit_Aaa_Bbb_Ccc_Ddd();
- $d5 = new PHPUnit_Aaa_Bbb_Ccc_Ddd_Eee();
- }
- }',
- ['target' => PhpUnitTargetVersion::VERSION_6_0],
- ],
- [
- '<?php
- echo \PHPUnit\Runner\Version::id();
- echo \PHPUnit\Runner\Version::id();
- ',
- '<?php
- echo \PHPUnit_Runner_Version::id();
- echo \PHPUnit_Runner_Version::id();
- ',
- ],
- ];
- }
- }
|