Files
pest/tests/Features/Expect/toBeIntBackedEnum.php
2023-11-18 03:31:35 +00:00

10 lines
270 B
PHP

<?php
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();