Skip to content

Commit c754292

Browse files
committed
Added Mockery module
1 parent 9490cc2 commit c754292

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/Codeception/Module/Mockery.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
namespace Codeception\Module;
4+
5+
use Codeception\Module;
6+
use Codeception\TestCase;
7+
8+
class Mockery extends Module
9+
{
10+
11+
public function _after(TestCase $test)
12+
{
13+
\Mockery::close();
14+
}
15+
16+
}

0 commit comments

Comments
 (0)