expectations.will(Expectations.returnValue(acl));
mockery.checking(expectations);
final ACLResponse response = new ACLResponse(MAILBOX_NAME, acl);
final Responder responderMock = mockery.mock(Responder.class);
mockery.checking(new Expectations() {
{
oneOf(responderMock).respond(with(equal(response)));
oneOf(responderMock).respond(with(new StatusResponseTypeMatcher(StatusResponse.Type.OK)));
}