* 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\Tokenizer\Analyzer\Analysis; use PhpCsFixer\Tests\TestCase; use PhpCsFixer\Tokenizer\Analyzer\Analysis\CaseAnalysis; use PhpCsFixer\Tokenizer\Analyzer\Analysis\EnumAnalysis; /** * @covers \PhpCsFixer\Tokenizer\Analyzer\Analysis\EnumAnalysis * * @internal */ final class EnumAnalysisTest extends TestCase { public function testEnumAnalysis(): void { $analysis = new EnumAnalysis(10, 11, 15, []); self::assertSame(10, $analysis->getIndex()); self::assertSame(11, $analysis->getOpenIndex()); self::assertSame(15, $analysis->getCloseIndex()); self::assertSame([], $analysis->getCases()); } public function testEnumAnalysis2(): void { $caseAnalysis = new CaseAnalysis(20, 21); $analysis = new EnumAnalysis(15, 17, 190, [$caseAnalysis]); self::assertSame(15, $analysis->getIndex()); self::assertSame(17, $analysis->getOpenIndex()); self::assertSame(190, $analysis->getCloseIndex()); self::assertSame([$caseAnalysis], $analysis->getCases()); } }