对接 jmockitspring web 业务系统单测使用Jmockit 进行夸层mock 也可以static 方法mock
@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