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:
Carsten Brandt
2016-06-20 19:26:43 +02:00
parent 7ba631b4ae
commit 8ba032d147
65 changed files with 328 additions and 180 deletions

View 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';
}