mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 00:07:22 +01:00
initial commit
This commit is contained in:
9
tests/Features/Expect/toHaveDestructor.php
Normal file
9
tests/Features/Expect/toHaveDestructor.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?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();
|
||||
Reference in New Issue
Block a user