rector/tests/Issues/Issue1242/Issue1242Test.php

21 lines
460 B
PHP

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