Exemple #1
0
 /**
  * @covers Zend\Db\Adapter\Platform\Sqlite::quoteIdentifierChain
  */
 public function testQuoteIdentifierChain()
 {
     $this->assertEquals('"identifier"', $this->platform->quoteIdentifierChain('identifier'));
     $this->assertEquals('"identifier"', $this->platform->quoteIdentifierChain(array('identifier')));
     $this->assertEquals('"schema"."identifier"', $this->platform->quoteIdentifierChain(array('schema', 'identifier')));
 }