use of org.cloudfoundry.credhub.handler.InterpolationHandler in project credhub by cloudfoundry-incubator.
the class InterpolationHandlerTest method beforeEach.
@Before
public void beforeEach() {
credentialService = mock(PermissionedCredentialService.class);
userContext = mock(UserContext.class);
subject = new InterpolationHandler(credentialService);
eventAuditRecordParameters = new ArrayList<>();
}
Aggregations