mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-15 14:50:56 +08: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
13 lines
199 B
PHP
13 lines
199 B
PHP
<?php
|
|
|
|
namespace yiiunit\framework\db\mysql;
|
|
|
|
/**
|
|
* @group db
|
|
* @group mysql
|
|
*/
|
|
class BatchQueryResultTest extends \yiiunit\framework\db\BatchQueryResultTest
|
|
{
|
|
public $driverName = 'mysql';
|
|
}
|