accounts/tests/codeception/api/unit/TestCase.php
2016-10-29 00:47:31 +03:00

23 lines
509 B
PHP

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