/**
  * delete() delegates call to connection
  */
 public function testDelete()
 {
     $this->connection->expects($this->once())->method('delete')->willReturn(1);
     $this->dataMapper->delete(new Article());
 }