1234567891011121314151617181920212223242526 |
- <?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;
- /**
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * @internal
- */
- final class AbstractFixerTest extends \PHPUnit_Framework_TestCase
- {
- public function testSupports()
- {
- $mockup = $this->getMockForAbstractClass('\\Symfony\\CS\\AbstractFixer');
- $this->assertTrue($mockup->supports(new \SplFileInfo(__FILE__)));
- }
- }
|