2016-01-02 19:13:18 +05:30
|
|
|
<?php
|
2019-05-14 04:28:29 +05:30
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-02-21 01:28:52 +05:30
|
|
|
namespace common\tests\unit;
|
2016-01-02 19:13:18 +05:30
|
|
|
|
2019-05-14 04:28:29 +05:30
|
|
|
use Codeception\Test\Unit;
|
2019-12-14 02:46:05 +05:30
|
|
|
use common\tests\helpers\ExtendedPHPMock;
|
2017-04-25 03:53:04 +05:30
|
|
|
|
2019-12-14 02:46:05 +05:30
|
|
|
/**
|
|
|
|
* @property \common\tests\UnitTester $tester
|
|
|
|
*/
|
2019-05-14 04:28:29 +05:30
|
|
|
class TestCase extends Unit {
|
2019-12-14 02:46:05 +05:30
|
|
|
use ExtendedPHPMock;
|
2018-04-18 02:17:25 +05:30
|
|
|
|
2016-10-29 03:17:31 +05:30
|
|
|
/**
|
2019-07-15 04:29:56 +05:30
|
|
|
* A list of fixtures that will be loaded before the test, but after the database is cleaned up
|
2016-10-29 03:17:31 +05:30
|
|
|
*
|
|
|
|
* @url http://codeception.com/docs/modules/Yii2#fixtures
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2019-05-14 04:28:29 +05:30
|
|
|
public function _fixtures(): array {
|
2016-10-29 03:17:31 +05:30
|
|
|
return [];
|
|
|
|
}
|
2016-01-21 02:44:29 +05:30
|
|
|
|
2016-01-02 19:13:18 +05:30
|
|
|
}
|