Пример #1
0
 /**
  * @covers Zend\Db\Adapter\Platform\Mysql::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")));
 }
Пример #2
0
 /**
  * @covers Zend\Db\Adapter\Platform\Mysql::quoteValueList
  */
 public function testQuoteValueList()
 {
     $this->setExpectedException('PHPUnit_Framework_Error', 'Attempting to quote a value in Zend\\Db\\Adapter\\Platform\\Mysql without extension/driver support can introduce security vulnerabilities in a production environment');
     $this->assertEquals("'Foo O\\'Bar'", $this->platform->quoteValueList("Foo O'Bar"));
 }