accounts/tests/codeception/common/unit/TestCase.php
2017-04-25 01:23:04 +03:00

30 lines
626 B
PHP

<?php
namespace tests\codeception\common\unit;
use Mockery;
class TestCase extends \Codeception\Test\Unit {
/**
* @var \tests\codeception\common\UnitTester
*/
protected $tester;
/**
* Список фикстур, что будут загружены перед тестом, но после зачистки базы данных
*
* @url http://codeception.com/docs/modules/Yii2#fixtures
*
* @return array
*/
public function _fixtures() {
return [];
}
protected function tearDown() {
parent::tearDown();
Mockery::close();
}
}