Browse Source

fixed group annotations for #12889

tags/2.0.11
Carsten Brandt 8 years ago
parent
commit
24809c5d73
  1. 2
      tests/framework/db/cubrid/ActiveQueryTest.php
  2. 2
      tests/framework/db/mssql/ActiveQueryTest.php
  3. 12
      tests/framework/db/oci/ActiveQueryTest.php
  4. 2
      tests/framework/db/pgsql/ActiveQueryTest.php
  5. 2
      tests/framework/db/sqlite/ActiveQueryTest.php

2
tests/framework/db/cubrid/ActiveQueryTest.php

@ -4,7 +4,7 @@ namespace yiiunit\framework\db\cubrid;
/**
* @group db
* @group mysql
* @group cubrid
*/
class ActiveQueryTest extends \yiiunit\framework\db\ActiveQueryTest
{

2
tests/framework/db/mssql/ActiveQueryTest.php

@ -4,7 +4,7 @@ namespace yiiunit\framework\db\mssql;
/**
* @group db
* @group mysql
* @group mssql
*/
class ActiveQueryTest extends \yiiunit\framework\db\ActiveQueryTest
{

12
tests/framework/db/oci/ActiveQueryTest.php

@ -0,0 +1,12 @@
<?php
namespace yiiunit\framework\db\oci;
/**
* @group db
* @group oci
*/
class ActiveQueryTest extends \yiiunit\framework\db\ActiveQueryTest
{
public $driverName = 'oci';
}

2
tests/framework/db/pgsql/ActiveQueryTest.php

@ -4,7 +4,7 @@ namespace yiiunit\framework\db\pgsql;
/**
* @group db
* @group mysql
* @group pgsql
*/
class ActiveQueryTest extends \yiiunit\framework\db\ActiveQueryTest
{

2
tests/framework/db/sqlite/ActiveQueryTest.php

@ -4,7 +4,7 @@ namespace yiiunit\framework\db\sqlite;
/**
* @group db
* @group mysql
* @group sqlite
*/
class ActiveQueryTest extends \yiiunit\framework\db\ActiveQueryTest
{

Loading…
Cancel
Save