We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84ad414 commit 6dab25fCopy full SHA for 6dab25f
tests/HelperFunctions/TestCase.php
@@ -4,10 +4,12 @@
4
5
use Illuminated\Testing\TestingTools;
6
use Mockery;
7
+use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
8
9
abstract class TestCase extends \PHPUnit\Framework\TestCase
10
{
11
use TestingTools;
12
+ use MockeryPHPUnitIntegration;
13
14
public static $functions;
15
@@ -20,9 +22,4 @@ protected function shouldReceiveExecCallOnceWith($with)
20
22
21
23
self::$functions->shouldReceive('exec')->with($with)->once();
24
}
-
- protected function tearDown()
25
- {
26
- Mockery::close();
27
- }
28
0 commit comments