rector/tests/Issues/Issue1242/Issue1242Test.php

21 lines
460 B
PHP
Raw Normal View History

2019-10-13 07:59:52 +02:00
<?php
declare(strict_types=1);
2019-03-27 14:26:13 +01:00
namespace Rector\Core\Tests\Issues\Issue1242;
2019-03-27 14:26:13 +01:00
use Rector\Core\Testing\PHPUnit\AbstractRectorTestCase;
2019-03-27 14:26:13 +01:00
final class Issue1242Test extends AbstractRectorTestCase
{
public function test(): void
{
$this->doTestFile(__DIR__ . '/Fixture/fixture1242.php.inc');
2019-03-27 14:26:13 +01:00
}
protected function provideConfig(): string
{
2019-06-08 22:41:52 +02:00
return __DIR__ . '/../../../config/set/twig/twig-underscore-to-namespace.yaml';
2019-03-27 14:26:13 +01:00
}
}