Exemplo n.º 1
0
 /**
  * @test
  */
 public function truncateQuery()
 {
     $this->connection->expects($this->once())->method('executeUpdate')->with('TRUNCATE "aTestTable"')->will($this->returnValue(0));
     $this->connection->truncate('aTestTable', false);
 }