当前位置:   article > 正文

Java 单测—static方法_静态方法单测

静态方法单测

单测—static方法

静态方法的单测

方法上加注解

@PrepareForTest({静态方法所在的类.class})
  • 1

调用测试方法前先要mock出类。

@Before
public void setUp() throws Exception {
    PowerMockito.mockStatic(类名.class);
}
  • 1
  • 2
  • 3
  • 4

单测方法中直接使用静态方法

@Test
public void test() {
	when(类名.方法名(参数1, 参数2)).thenReturn(想要返回的结果);
}
  • 1
  • 2
  • 3
  • 4
本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号