Commit bb12840b authored by Steve Müller's avatar Steve Müller

#657 - add dedicated unit test case for AbstractPlatform::getStringLiteralQuoteCharacter()

parent d82d067a
......@@ -861,6 +861,16 @@ abstract class AbstractPlatformTestCase extends \Doctrine\Tests\DbalTestCase
);
}
protected function getStringLiteralQuoteCharacter()
{
return "'";
}
public function testGetStringLiteralQuoteCharacter()
{
$this->assertSame($this->getStringLiteralQuoteCharacter(), $this->_platform->getStringLiteralQuoteCharacter());
}
public function testGetCommentOnColumnSQL()
{
$this->assertEquals(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment