mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-15 06:40:59 +08:00
17 lines
307 B
PHP
17 lines
307 B
PHP
<?php
|
|
namespace yiiunit\framework\db\oci;
|
|
|
|
use yiiunit\framework\data\ActiveDataProviderTest;
|
|
use yii\data\ActiveDataProvider;
|
|
use yiiunit\data\ar\Order;
|
|
|
|
/**
|
|
* @group db
|
|
* @group oci
|
|
* @group data
|
|
*/
|
|
class OracleActiveDataProviderTest extends ActiveDataProviderTest
|
|
{
|
|
public $driverName = 'oci';
|
|
}
|