mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-01 20:19:42 +08:00
20 lines
377 B
PHP
20 lines
377 B
PHP
<?php
|
|
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yiiunit\framework\db\sqlite;
|
|
|
|
/**
|
|
* @group db
|
|
* @group sqlite
|
|
* @group validators
|
|
*/
|
|
class UniqueValidatorTest extends \yiiunit\framework\validators\UniqueValidatorTest
|
|
{
|
|
public $driverName = 'sqlite';
|
|
}
|