mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
27 lines
524 B
PHP
27 lines
524 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace common\tests\unit;
|
|
|
|
use Codeception\Test\Unit;
|
|
use common\tests\helpers\ExtendedPHPMock;
|
|
|
|
/**
|
|
* @property \common\tests\UnitTester $tester
|
|
*/
|
|
class TestCase extends Unit {
|
|
use ExtendedPHPMock;
|
|
|
|
/**
|
|
* A list of fixtures that will be loaded before the test, but after the database is cleaned up
|
|
*
|
|
* @url http://codeception.com/docs/modules/Yii2#fixtures
|
|
*
|
|
* @return array
|
|
*/
|
|
public function _fixtures(): array {
|
|
return [];
|
|
}
|
|
|
|
}
|