packages/sql-faker/tests/Unit/Compiler/Bison/Lexer/BisonLexemeTest.php
1<?php
2
3declare(strict_types=1);
4
5namespace Tests\Unit\SqlFaker\Compiler\Bison\Lexer;
6
7use PHPUnit\Framework\Attributes\CoversClass;
8use PHPUnit\Framework\TestCase;
9use SqlFaker\Compiler\Bison\Lexer\BisonLexeme;
10
11#[CoversClass(BisonLexeme::class)]
12final class BisonLexemeTest extends TestCase
13{
14 public function testCasesCount(): void
15 {
16 self::assertCount(13, BisonLexeme::cases());
17 }
18}
19