rector/tests/Issues/Issue1242/Issue1242Test.php
2019-09-03 14:02:42 +02:00

19 lines
452 B
PHP

<?php declare(strict_types=1);
namespace Rector\Tests\Issues\Issue1242;
use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class Issue1242Test extends AbstractRectorTestCase
{
public function test(): void
{
$this->doTestFiles([__DIR__ . '/Fixture/fixture1242.php.inc']);
}
protected function provideConfig(): string
{
return __DIR__ . '/../../../config/set/twig/twig-underscore-to-namespace.yaml';
}
}