java - 如何结合 PowerMock 和 Robolectric

标签 java unit-testing powermock robolectric powermockito

我有一个检查互联网状态的静态方法,它使用上下文。所以要模拟它,我需要使用 PowerMock。我正在使用 robolectric 来加快我的测试,因为我唯一需要模拟的就是模拟。但我似乎无法配置 PowerMock(1.6.6) 和 Robolectric(3.2.2) 一起工作。这就是我注释我的类(class)的方式:

@RunWith(RobolectricTestRunner.class)
@org.robolectric.annotation.Config(constants = BuildConfig.class, sdk = 21)
@PowerMockIgnore({"org.mockito.*", "org.robolectric.*", "android.*"})
@PrepareForTest({Utils.class})

设置方法中的这一行:

PowerMockito.mockStatic(Utils.class);

但是我收到这个异常:

org.powermock.api.mockito.ClassNotPreparedException: 
The class com.zeyad.usecases.data.utils.Utils not prepared for test.
To prepare this class, add class to the '@PrepareForTest' annotation.
In case if you don't use this annotation, add the annotation on class or  method level. 

at org.powermock.api.mockito.expectation.reporter.MockitoPowerMockReporter.classNotPrepared(MockitoPowerMockReporter.java:32)
at org.powermock.api.mockito.internal.mockcreation.MockTypeValidatorFactory$DefaultMockTypeValidator.validate(MockTypeValidatorFactory.java:38)
at org.powermock.api.mockito.internal.mockcreation.AbstractMockCreator.validateType(AbstractMockCreator.java:10)
at org.powermock.api.mockito.internal.mockcreation.DefaultMockCreator.createMock(DefaultMockCreator.java:56)
at org.powermock.api.mockito.internal.mockcreation.DefaultMockCreator.mock(DefaultMockCreator.java:46)
at org.powermock.api.mockito.PowerMockito.mockStatic(PowerMockito.java:71)
at com.zeyad.usecases.data.repository.stores.DataStoreFactoryJUnitTest.setUp(DataStoreFactoryJUnitTest.java:39)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.robolectric.RobolectricTestRunner$2.evaluate(RobolectricTestRunner.java:339)
at org.robolectric.RobolectricTestRunner.runChild(RobolectricTestRunner.java:259)
at org.robolectric.RobolectricTestRunner.runChild(RobolectricTestRunner.java:41)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.robolectric.RobolectricTestRunner$1.evaluate(RobolectricTestRunner.java:199)

我的 build.gradle 文件依赖:

testCompile "junit:junit:$junit"
testCompile "org.hamcrest:hamcrest-library:$hamcrest"
testCompile "com.android.support:support-annotations:$supportLibraryVersion"
testCompile "org.mockito:mockito-core:1.10.19"
testCompile "org.robolectric:robolectric:$robolectric"
testCompile "org.robolectric:shadows-support-v4:$robolectric"
testCompile "org.powermock:powermock-module-junit4:$powerMock"
testCompile "org.powermock:powermock-module-junit4-rule:$powerMock"
testCompile "org.powermock:powermock-api-mockito:$powerMock"
testCompile "org.powermock:powermock-classloading-xstream:$powerMock"

最佳答案

在 Robolectric wiki 上,您可以找到有关如何使用 PowerMock 设置 Roboelectric 的完整说明 https://github.com/robolectric/robolectric/wiki/Using-PowerMock

关于java - 如何结合 PowerMock 和 Robolectric,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42207667/

相关文章:

java - Eclipse - JFace 表列未显示在自定义对话框中

java - 需要 Java regEx 来读取字符串中的数字

powermock - Android、PowerMock : Test class in folder androidTest: javassist. NotFoundException:

JAVA double 转字符串格式

java - 来自 Wikipedia API 的 JSON 和 GSON - 解析具有不同名称的对象

c# - 犀牛模拟 : AAA Synax: Assert property was set with a given type

ruby-on-rails - 在 Controller 中运行 capybara 来测试一些东西但只能运行一次

cocoa-touch - 使用 OCMock 模拟 NSNotificationCenter 有时会失败,除非添加延迟

java - Powermock verifyPrivate 不能与 any() 一起使用

java - 如何在 powermock 中模拟 void 方法