2016-01-02 19:13:18 +05:30
|
|
|
<?php
|
|
|
|
namespace tests\codeception\api\unit;
|
|
|
|
|
2016-10-29 03:17:31 +05:30
|
|
|
class TestCase extends \Codeception\Test\Unit {
|
2016-01-21 02:44:29 +05:30
|
|
|
|
2016-10-29 03:17:31 +05:30
|
|
|
/**
|
|
|
|
* @var \tests\codeception\api\UnitTester
|
|
|
|
*/
|
|
|
|
protected $tester;
|
2016-01-21 02:44:29 +05:30
|
|
|
|
2016-10-29 03:17:31 +05:30
|
|
|
/**
|
|
|
|
* Список фикстур, что будут загружены перед тестом, но после зачистки базы данных
|
|
|
|
*
|
|
|
|
* @url http://codeception.com/docs/modules/Yii2#fixtures
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function _fixtures() {
|
|
|
|
return [];
|
|
|
|
}
|
2016-01-21 02:44:29 +05:30
|
|
|
|
2016-01-02 19:13:18 +05:30
|
|
|
}
|