Добавлен Mockery

This commit is contained in:
ErickSkrauch
2017-04-25 01:23:04 +03:00
parent 0b61c2d819
commit 8c6921ff0e
8 changed files with 56 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
namespace tests\codeception\console\unit;
use Codeception\Test\Unit;
use Mockery;
class TestCase extends Unit {
@@ -21,4 +22,9 @@ class TestCase extends Unit {
return [];
}
protected function tearDown() {
parent::tearDown();
Mockery::close();
}
}