accounts/tests/codeception/common/unit/TestCase.php
2018-04-17 23:47:25 +03:00

30 lines
625 B
PHP

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