mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 15:32:12 +05:30
23 lines
509 B
PHP
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 [];
|
|
}
|
|
|
|
}
|