コード例 #1
0
 /**
  * Tests the quoteName method.
  *
  * @return  void
  *
  * @since   1.0
  */
 public function testQuoteName()
 {
     $q = new PostgresqlQuery($this->dbo);
     $this->assertThat($q->quoteName('test'), $this->equalTo('"test"'), 'The quoteName method should be a proxy for the DatabaseDriver::quoteName method.');
 }