1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/tests/Connection/MysqlTestCase.php
2006-11-28 17:56:51 +00:00

11 lines
342 B
PHP

<?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`');
}
}