fuzzydb icon indicating copy to clipboard operation
fuzzydb copied to clipboard

Create @Mock @Autowire combo support

Open nealeu opened this issue 14 years ago • 0 comments

This would create a Mockito mock and place it in the context to be autowired everywhere.

@Autowired
@Mock
private DataOperations mockToProvideToSpringContext;

This would spy (where possible) on a real object already provided in the spring context

@Autowired
@Spy
private TxLog realObjectToSpyOn;

nealeu avatar Jun 21 '11 13:06 nealeu