@ActiveProfiles("dev")
@ContextConfiguration({ "/spring-test.xml" })
public class ServiceImplTest extends AbstractTestNGSpringContextTests{}
使用mockito + powerMock + testNg通过模拟静态方法编写单元测试用例所需的maven配置和代码更改应该是什么。
尝试以下步骤但不起作用:
PowerMockito.mockStatic(Static.class);
Mockito.when(Static.firstStaticMethod(PARAM))thenReturn(值);