}
@Test
public void init_requestIsNotProxy() {
try {
new FormServiceImpl(createMock(HttpServletRequest.class));
fail();
} catch (IllegalArgumentException e) {
assertThat(e, exception("expects a proxy delegating to a real object, but got an object of type "));
}
}