public function testQuoteIdentifier()
 {
     if ($this->_platform->getName() == "mssql") {
         $this->markTestSkipped('Not working this way on mssql.');
     }
     $c = $this->_platform->getIdentifierQuoteCharacter();
     $this->assertEquals(str_repeat($c, 4), $this->_platform->quoteIdentifier($c));
 }