Files
pest/tests/Features/Expect/toBeIntBackedEnum.php
T
nuno maduro cd0e921158 chore: style
2026-07-19 00:42:29 +01:00

12 lines
296 B
PHP

<?php
declare(strict_types=1);
test('enum is backed by int')
->expect('Tests\Fixtures\Arch\ToBeIntBackedEnum\HasIntBacking')
->toBeIntBackedEnum();
test('enum is not backed by int')
->expect('Tests\Fixtures\Arch\ToBeIntBackedEnum\HasStringBacking')
->not->toBeIntBackedEnum();