mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			643 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			643 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace common\tests\unit;
 | 
						|
 | 
						|
use Codeception\Test\Unit;
 | 
						|
use Mockery;
 | 
						|
 | 
						|
class TestCase extends Unit {
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var \common\tests\UnitTester
 | 
						|
     */
 | 
						|
    protected $tester;
 | 
						|
 | 
						|
    protected function tearDown() {
 | 
						|
        parent::tearDown();
 | 
						|
        Mockery::close();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Список фикстур, что будут загружены перед тестом, но после зачистки базы данных
 | 
						|
     *
 | 
						|
     * @url http://codeception.com/docs/modules/Yii2#fixtures
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function _fixtures(): array {
 | 
						|
        return [];
 | 
						|
    }
 | 
						|
 | 
						|
}
 |