use of org.eclipse.sw360.datahandler.thrift.moderation.ModerationService in project sw360portal by sw360.
the class ComponentAndAttachmentAwareDBTest method getThriftClients.
protected static ThriftClients getThriftClients() throws TException, IOException {
assertTestDbNames();
ThriftClients thriftClients = failingMock(ThriftClients.class);
ComponentHandler componentHandler = new ComponentHandler(thriftClients);
VendorHandler vendorHandler = new VendorHandler();
AttachmentHandler attachmentHandler = new AttachmentHandler();
ModerationService.Iface moderationService = failingMock(ModerationService.Iface.class);
doNothing().when(moderationService).deleteRequestsOnDocument(anyString());
doReturn(componentHandler).when(thriftClients).makeComponentClient();
doReturn(vendorHandler).when(thriftClients).makeVendorClient();
doReturn(attachmentHandler).when(thriftClients).makeAttachmentClient();
doReturn(moderationService).when(thriftClients).makeModerationClient();
return thriftClients;
}
Aggregations