metadataPool = $this->getMockBuilder(MetadataPool::class) ->disableOriginalConstructor() ->getMock(); $this->resourceConnection = $this->getMockBuilder(ResourceConnection::class) ->disableOriginalConstructor() ->getMock(); $this->updateMain = $this->getMockBuilder(UpdateMain::class) ->disableOriginalConstructor() ->getMock(); $this->update = (new ObjectManager($this))->getObject(Update::class, [ 'metadataPool' => $this->metadataPool, 'resourceConnection' => $this->resourceConnection, 'updateMain' => $this->updateMain, ]); } /** * @expectedException \Magento\Framework\Exception\AlreadyExistsException */ public function testDuplicateExceptionProcessingOnExecute() { $metadata = $this->createMock(EntityMetadataInterface::class); $this->metadataPool->expects($this->any())->method('getMetadata')->willReturn($metadata); $connection = $this->createMock(AdapterInterface::class); $connection->expects($this->once())->method('rollback'); $this->resourceConnection->expects($this->any())->method('getConnectionByName')->willReturn($connection); $this->updateMain->expects($this->once())->method('execute')->willThrowException(new DuplicateException()); $entity = $this->getMockBuilder(DataObject::class) ->disableOriginalConstructor() ->getMock(); $this->update->execute($entity); } }