AbstractFixerTest.php 606 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /*
  3. * This file is part of the PHP CS utility.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * This source file is subject to the MIT license that is bundled
  8. * with this source code in the file LICENSE.
  9. */
  10. namespace Symfony\CS\Tests;
  11. /**
  12. * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
  13. *
  14. * @internal
  15. */
  16. final class AbstractFixerTest extends \PHPUnit_Framework_TestCase
  17. {
  18. public function testSupports()
  19. {
  20. $mockup = $this->getMockForAbstractClass('\\Symfony\\CS\\AbstractFixer');
  21. $this->assertTrue($mockup->supports(new \SplFileInfo(__FILE__)));
  22. }
  23. }