赞
踩
方法上加注解
@PrepareForTest({静态方法所在的类.class})
调用测试方法前先要mock出类。
@Before
public void setUp() throws Exception {
PowerMockito.mockStatic(类名.class);
}
单测方法中直接使用静态方法
@Test
public void test() {
when(类名.方法名(参数1, 参数2)).thenReturn(想要返回的结果);
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。