use of gov.ca.cwds.authorizer.drools.configuration.ClientResultAuthorizationDroolsConfiguration in project api-core by ca-cwds.
the class ClientResultReadAuthorizerTest method init.
@Before
public void init() {
MockitoAnnotations.initMocks(this);
final DroolsService droolsService = new DroolsService();
final DroolsAuthorizationService droolsAuthorizationService = new DroolsAuthorizationService(droolsService);
testSubject = new ClientResultReadAuthorizer(droolsAuthorizationService, new ClientResultAuthorizationDroolsConfiguration());
testSubject.setCountyDeterminationService(clientCountyDeterminationServiceMock);
}
Aggregations