1. 程式人生 > >Mockito結合spring進行跨層 mock

Mockito結合spring進行跨層 mock

對接 jmockit
@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations="classpath:/proxy-services.xml") public class OrderProxyRemoteServiceImplTest { @InjectMocks @Autowired private A a; @InjectMocks @Autowired private B b; @Mock private C c; 其中 測 A 方法, A 呼叫 B, B 呼叫 c .將 c mock 掉.
關鍵是用這個啟動
MockitoAnnotations.initMocks
(this); 其他教程 http://blog.csdn.net/dc_726/article/details/8568537