Files
yii2/tests/framework/db/mysql/ConnectionTest.php
Carsten Brandt 8ba032d147 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
2016-06-20 19:26:43 +02:00

13 lines
190 B
PHP

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