rector/tests/NodeVisitor/DependencyInjection/InjectAnnotationToConstructorReconstructor/Test.php
TomasVotruba 8f87dd58d6 cleanup
2017-07-19 00:42:50 +02:00

24 lines
666 B
PHP

<?php declare(strict_types=1);
namespace Rector\Tests\NodeVisitor\DependencyInjection\InjectAnnotationToConstructorReconstructor;
use Rector\NodeVisitor\DependencyInjection\InjectAnnotationToConstructorNodeVisitor;
use Rector\Testing\PHPUnit\AbstractReconstructorTestCase;
final class Test extends AbstractReconstructorTestCase
{
public function test(): void
{
$this->doTestFileMatchesExpectedContent(
__DIR__ . '/wrong/wrong.php.inc',
__DIR__ . '/correct/correct.php.inc'
);
}
protected function getNodeVisitorClass(): string
{
return InjectAnnotationToConstructorNodeVisitor::class;
}
}