packages/sql-faker/tests/Unit/Compiler/Bison/Ast/BisonSymbolFormTest.php

1<?php
2
3declare(strict_types=1);
4
5namespace Tests\Unit\SqlFaker\Compiler\Bison\Ast;
6
7use PHPUnit\Framework\Attributes\CoversClass;
8use PHPUnit\Framework\TestCase;
9use SqlFaker\Compiler\Bison\Ast\BisonSymbolForm;
10
11#[CoversClass(BisonSymbolForm::class)]
12final class BisonSymbolFormTest extends TestCase
13{
14    public function testIdentifierCase(): void
15    {
16        self::assertSame('Identifier', BisonSymbolForm::Identifier->name);
17    }
18
19    public function testCharLiteralCase(): void
20    {
21        self::assertSame('CharLiteral', BisonSymbolForm::CharLiteral->name);
22    }
23}
24