mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-17 16:01:15 +08:00

- Better names - Removed not used MySQLTestCase - Moved base testcase for DB to db namespace - Minor style fixes
14 lines
233 B
PHP
14 lines
233 B
PHP
<?php
|
|
namespace yiiunit\framework\db\sqlite;
|
|
|
|
use yiiunit\framework\db\QueryTest;
|
|
|
|
class SqliteQueryTest extends QueryTest
|
|
{
|
|
protected function setUp()
|
|
{
|
|
$this->driverName = 'sqlite';
|
|
parent::setUp();
|
|
}
|
|
}
|