mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 06:37:55 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			731 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			731 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @link http://www.yiiframework.com/
 | 
						|
 * @copyright Copyright (c) 2008 Yii Software LLC
 | 
						|
 * @license http://www.yiiframework.com/license/
 | 
						|
 */
 | 
						|
 | 
						|
namespace yiiunit\framework\mutex;
 | 
						|
 | 
						|
use yii\mutex\PgsqlMutex;
 | 
						|
use yiiunit\framework\db\DatabaseTestCase;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class PgsqlMutexTest.
 | 
						|
 *
 | 
						|
 * @group mutex
 | 
						|
 * @group db
 | 
						|
 * @group pgsql
 | 
						|
 */
 | 
						|
class PgsqlMutexTest extends DatabaseTestCase
 | 
						|
{
 | 
						|
    use MutexTestTrait;
 | 
						|
 | 
						|
    protected $driverName = 'pgsql';
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return PgsqlMutex
 | 
						|
     * @throws \yii\base\InvalidConfigException
 | 
						|
     */
 | 
						|
    protected function createMutex()
 | 
						|
    {
 | 
						|
        return \Yii::createObject([
 | 
						|
            'class' => PgsqlMutex::className(),
 | 
						|
            'db' => $this->getConnection(),
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
}
 |