mirror of
https://github.com/pestphp/pest.git
synced 2026-04-20 22:20:17 +02:00
initial commit
This commit is contained in:
9
tests/Features/Expect/toHaveConstructor.php
Normal file
9
tests/Features/Expect/toHaveConstructor.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
test('class has constructor')
|
||||
->expect('Tests\Fixtures\Arch\ToHaveConstructor\HasConstructor\HasConstructor')
|
||||
->toHaveConstructor();
|
||||
|
||||
test('class has no constructor')
|
||||
->expect('Tests\Fixtures\Arch\ToHaveConstructor\HasNoConstructor\HasNoConstructor')
|
||||
->not->toHaveConstructor();
|
||||
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