Are you looking for a way to automatically create mocks and inject them
to fields annotated with @Inject? In this case I would rather write a
JUnit rule and then use Whitebox.getAllFieldsAnnotatedWith(..) and for
each of those fields I would create a mock instance and set it to the field.
/Johan