作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Mockito 3.6 支持在 try-with-resources
下模拟静态方法阻止解释 here .
有人可以告诉我是否在 @Before
中使用 Powermock 模拟静态方法吗?或 @BeforeClass
可以 Mockito.mockStatic
用于替换它们而不完全重写测试类?
最佳答案
我认为您可能需要进行一些重构。您可以通过在类级别创建 MockedStatic 变量来创建静态方法的模拟,并在您的测试中使用它,有时它也需要在 @After 块中关闭,例如
MockedStatic<StaticClass> mockedStaticClass;
@Before
public void setUp()
{
mockedStaticClass = Mockito.mockStatic(StaticClass.class);
}
@After
public void tearDown() throws Exception
{
mockedStaticClass.close();
}
@Test
public void yourTest()
{
//make use of mockedStatic variable you created earlier
}
关于java - Mockito 3.6 : Using mockStatic in @Before or @BeforeClass with JUnit4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65965396/
我是一名优秀的程序员,十分优秀!