Files
pest/tests/Features/Expect/toHaveDestructor.php
2023-09-18 01:00:50 +01:00

10 lines
292 B
PHP

<?php
test('class has destructor')
->expect('Tests\Fixtures\Arch\ToHaveDestructor\HasDestructor\HasDestructor')
->toHaveDestructor();
test('class has no destructor')
->expect('Tests\Fixtures\Arch\ToHaveDestructor\HasNoDestructor\HasNoDestructor')
->not->toHaveDestructor();