1
0
mirror of synced 2024-12-15 15:46:02 +03:00
doctrine2/tests/Connection/MysqlTestCase.php

11 lines
342 B
PHP
Raw Normal View History

2006-11-28 20:56:51 +03:00
<?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`');
}
}