mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
10 lines
270 B
PHP
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();
|