Mockito与Spring中@Autowired与@InjectMocks组合

来源:互联网 发布:mac os ie内核浏览器 编辑:程序博客网 时间:2024/06/05 02:24
 @InjectMocks    @Autowired    private TestClass testClass;    @Mock    private TestClassPropertyA testClassPropertyA;    //TestClass 若只想mock TestClass 其中的属性testClassPropertyA,其他属性仍使用真实调用;//则需要对TestClass的属性加上setter方法