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