Normally, this could be done using the normal Mockito object like so:
@Mock(answer=RETURN_DEEP_STUBS) Session session;
However, using the @Inject annotation, there's no ability to provide that. Is there a way to set the "answers" for the Mock object? Or is there another way to get the deep stubbing behavior? Or is this the default?