Files
yii2/tests/framework/db/oci/OracleCommandTest.php
2015-04-16 12:10:01 +03:00

23 lines
493 B
PHP

<?php
namespace yiiunit\framework\db\oci;
use yiiunit\framework\db\CommandTest;
/**
* @group db
* @group oci
*/
class OracleCommandTest extends CommandTest
{
protected $driverName = 'oci';
public function testAutoQuoting()
{
$db = $this->getConnection(false);
$sql = 'SELECT [[id]], [[t.name]] FROM {{customer}} t';
$command = $db->createCommand($sql);
$this->assertEquals('SELECT "id", "t"."name" FROM "customer" t', $command->sql);
}
}