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