SqliteActiveRecordTest.php 254 Bytes
Newer Older
1 2 3
<?php
namespace yiiunit\framework\db\sqlite;

Alexander Makarov committed
4 5 6
use yiiunit\framework\db\ActiveRecordTest;

class SqliteActiveRecordTest extends ActiveRecordTest
7
{
Carsten Brandt committed
8
    protected function setUp()
9 10 11 12
    {
        $this->driverName = 'sqlite';
        parent::setUp();
    }
13
}