feat(helpers): adds helpers file

This commit is contained in:
Nuno Maduro
2020-05-14 23:03:56 +02:00
parent 9288490613
commit c97fd17120
5 changed files with 37 additions and 5 deletions

8
tests/Helpers.php Normal file
View File

@ -0,0 +1,8 @@
<?php
use Mockery\MockInterface;
function mock(string $class): MockInterface
{
return Mockery::mock($class);
}