mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-04 14:34:49 +01:00
* setup ActiveQueryTest * basic unit tests for ActiveQuery are created: - all protected & public methods are covered - method return types are tested - some functions are already full tested, others are supplied with @todo * fix driver for mssql * fix ::class to className() * remove OCI tests
13 lines
191 B
PHP
13 lines
191 B
PHP
<?php
|
|
|
|
namespace yiiunit\framework\db\sqlite;
|
|
|
|
/**
|
|
* @group db
|
|
* @group mysql
|
|
*/
|
|
class ActiveQueryTest extends \yiiunit\framework\db\ActiveQueryTest
|
|
{
|
|
public $driverName = 'sqlite';
|
|
}
|