packages/sql-faker/tests/Unit/Compiler/Bison/Ast/BisonExpectDeclarationTest.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\BisonExpectDeclaration;
10
11#[CoversClass(BisonExpectDeclaration::class)]
12final class BisonExpectDeclarationTest extends TestCase
13{
14 public function testCount(): void
15 {
16 $decl = new BisonExpectDeclaration(37);
17
18 self::assertSame(37, $decl->count);
19 }
20}
21