gpt4 book ai didi

unit-testing - Powermock 在使用 JUnit 5 时抛出 ClassNotPreparedException

转载 作者:行者123 更新时间:2023-12-04 16:44:29 30 4
gpt4 key购买 nike

我有一个示例测试类,我想在其中模拟一个静态类。我的 build.gradle 就像

testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.2.0'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.2.0'
testRuntime group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.2.0'
testRuntime("org.junit.platform:junit-platform-launcher:1.1.1")

testCompile group: 'org.powermock', name: 'powermock-api-mockito2', version: '2.0.0-beta.5'
testCompile group: 'org.mockito', name: 'mockito-core', version: '2.21.0'
testCompile group: 'org.mockito', name: 'mockito-junit-jupiter', version: '2.21.0'`

当我尝试我的测试用例时

@ExtendWith(MockitoExtension.class)
@PrepareForTest(MyUtil.class)
public class MyTest {

@Test
public void shouldCheckIfSyncTimeIsAboveThreshold() {
mockStatic(MyUtil.class);
when(MyUtil.getValue()).thenReturn(5));
}

但是当我运行它的时候,我得到了异常

org.powermock.api.mockito.ClassNotPreparedException:
The class MyUtil not prepared for test

有什么办法可以达到同样的效果

最佳答案

MockitoExtension 不支持 Powermock。

因此,没有注册的扩展可以处理 @PrepareForTest(MyUtil.class)

有关如何使用 Powermock 的详细信息,请访问 project webpage .

关于unit-testing - Powermock 在使用 JUnit 5 时抛出 ClassNotPreparedException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51779581/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com