mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-26 06:15:19 +08:00
refactored database tests
- 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
This commit is contained in:
12
tests/framework/db/mysql/BatchQueryResultTest.php
Normal file
12
tests/framework/db/mysql/BatchQueryResultTest.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace yiiunit\framework\db\mysql;
|
||||
|
||||
/**
|
||||
* @group db
|
||||
* @group mysql
|
||||
*/
|
||||
class BatchQueryResultTest extends \yiiunit\framework\db\BatchQueryResultTest
|
||||
{
|
||||
public $driverName = 'mysql';
|
||||
}
|
Reference in New Issue
Block a user