/**
  * Method to test replace().
  *
  * @return void
  *
  * @covers Windwalker\Query\Mysql\MysqlQueryBuilder::replace
  */
 public function testReplace()
 {
     $expected = "REPLACE INTO {$this->qn('foo')} (a,b) VALUES (c, d, e), (f, g, h)";
     $actual = MysqlQueryBuilder::replace('foo', array('a', 'b'), array('c, d, e', 'f, g, h'));
     $this->assertEquals($this->format($expected), $this->format($actual));
 }