SqliteQueryTest.php 378 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php
/**
 * Created by JetBrains PhpStorm.
 * User: RusMaxim
 * Date: 09.05.13
 * Time: 21:41
 * To change this template use File | Settings | File Templates.
 */

namespace yiiunit\framework\db\sqlite;


class SqliteQueryTest extends \yiiunit\framework\db\QueryTest
{
Carsten Brandt committed
15
    protected function setUp()
16 17 18 19
    {
        $this->driverName = 'sqlite';
        parent::setUp();
    }
20
}