* Dariusz RumiƄski * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Tests\Runner\Event; use PhpCsFixer\Runner\Event\FileProcessed; use PhpCsFixer\Tests\TestCase; /** * @internal * * @covers \PhpCsFixer\Runner\Event\FileProcessed */ final class FileProcessedTest extends TestCase { public function testFileProcessedEvent(): void { $status = FileProcessed::STATUS_NO_CHANGES; $event = new FileProcessed($status); self::assertSame($status, $event->getStatus()); } }