use of gov.cms.ab2d.common.service.PdpClientService in project ab2d by CMSgov.
the class ApiCommonTest method buildPdpClientService.
private PdpClientService buildPdpClientService() {
PdpClientService retPdpService = mock(PdpClientService.class);
when(retPdpService.getCurrentClient()).thenReturn(pdpClient);
return retPdpService;
}
Aggregations