MysqlTestCase.php 342 Bytes
Newer Older
zYne's avatar
zYne committed
1 2 3 4 5 6 7 8 9 10
<?php
class Doctrine_Connection_Mysql_TestCase extends Doctrine_Driver_UnitTestCase {
    public function __construct() {
        parent::__construct('mysql');
    }
    public function testQuoteIdentifier() {
        $id = $this->conn->quoteIdentifier('identifier', false);
        $this->assertEqual($id, '`identifier`');
    }
}