mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-05 15:04:38 +01:00
- changed test class naming for easier copying and searching of classes - made base tests abstract and made MySQL an equal citisen in the test hierarchie - added missing db specific test classes
24 lines
534 B
PHP
24 lines
534 B
PHP
<?php
|
|
|
|
namespace yiiunit\framework\db\cubrid;
|
|
|
|
use yii\db\Schema;
|
|
|
|
/**
|
|
* @group db
|
|
* @group cubrid
|
|
*/
|
|
class QueryBuilderTest extends \yiiunit\framework\db\QueryBuilderTest
|
|
{
|
|
public $driverName = 'cubrid';
|
|
|
|
/**
|
|
* this is not used as a dataprovider for testGetColumnType to speed up the test
|
|
* when used as dataprovider every single line will cause a reconnect with the database which is not needed here
|
|
*/
|
|
public function columnTypes()
|
|
{
|
|
return array_merge(parent::columnTypes(), []);
|
|
}
|
|
}
|