Exemple #1
0
 /**
  * @covers PDOK\Connector::quoteIdentifier
  */
 public function testQuoteIdentifierInvalidEngine()
 {
     $conn = new \PDOK\Connector('sqlite::memory:');
     $conn->engine = 'WhoseSql?';
     $this->setExpectedException("PDOException");
     $result = $conn->quoteIdentifier("yep");
 }