* 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\AnalysisStarted; use PhpCsFixer\Tests\TestCase; /** * @covers \PhpCsFixer\Runner\Event\AnalysisStarted * * @internal */ final class AnalysisStartedTest extends TestCase { public function testAnalysisStartedEvent(): void { $event = new AnalysisStarted(AnalysisStarted::MODE_SEQUENTIAL, true); self::assertSame('sequential', $event->getMode()); self::assertTrue($event->isDryRun()); } }