accounts/api/tests/unit/TestCase.php

30 lines
595 B
PHP
Raw Normal View History

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