@Test
public void testRequestsLogStartupBehaviorWhenLoggerAtDebugWithWrapper() throws Exception {
Logger.getLogger("org.apache.wink").setLevel(Level.FINE);
Requests r = new Requests();
r.init(null);
final MessageContext context = mockContext.mock(MessageContext.class);
final HttpServletRequestWrapper requestWrapper =
mockContext.mock(HttpServletRequestWrapper.class);
final UriInfo uriInfo = mockContext.mock(UriInfo.class);
final HttpHeaders headers = mockContext.mock(HttpHeaders.class);
mockContext.checking(new Expectations() {