Files
yii2/tests/framework/db/mysql/ActiveQueryTest.php
Boudewijn Vahrmeijer 560e3eb0a3 Unit tests created for ActiveQuery (#12889)
* 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
2016-11-01 20:48:58 +01:00

13 lines
189 B
PHP

<?php
namespace yiiunit\framework\db\mysql;
/**
* @group db
* @group mysql
*/
class ActiveQueryTest extends \yiiunit\framework\db\ActiveQueryTest
{
public $driverName = 'mysql';
}