Exemplo n.º 1
0
 /**
  * @covers Zend\Db\Adapter\Platform\Sqlite::quoteValueList
  */
 public function testQuoteValueList()
 {
     $this->assertEquals("'Foo O\\'Bar'", $this->platform->quoteValueList("Foo O'Bar"));
     $this->assertEquals("'Foo O\\'Bar'", $this->platform->quoteValueList(array("Foo O'Bar")));
     $this->assertEquals("'value', 'Foo O\\'Bar'", $this->platform->quoteValueList(array('value', "Foo O'Bar")));
 }
Exemplo n.º 2
0
 /**
  * @covers Zend\Db\Adapter\Platform\Sqlite::quoteValueList
  */
 public function testQuoteValueList()
 {
     $this->setExpectedException('PHPUnit_Framework_Error', 'Attempting to quote a value in Zend\\Db\\Adapter\\Platform\\Sqlite without extension/driver support can introduce security vulnerabilities in a production environment');
     $this->assertEquals("'Foo O\\'Bar'", $this->platform->quoteValueList("Foo O'Bar"));
 }