public function testAddListaPartecipanti()
 {
     $this->objectWrapper->setOperatoriAggiudicatariGetterWrapper(new OperatoriAggiudicatariGetterWrapper(new OperatoriAggiudicatariGetter($this->getEntityManagerMock())));
     $this->objectWrapper->setEntityManager($this->getEntityManagerMock());
     $records = $this->objectWrapper->addListaPartecipanti(array(array('id' => 1, 'beneficiario' => 'Beneficiario 1'), array('id' => 2, 'beneficiario' => 'Beneficiario 2')));
     $this->assertArrayHasKey('operatori', $records[0]);
 }