我正在尝试将jMockit 1.5与robolectric 2.2一起使用,但是一旦我尝试创建一个Activity,我就会得到一个java.lang.NoSuchMethodException。我把测试减少到了这个:
@RunWith(RobolectricTestRunner.class)
//@RunWith(MyTestRunner.class)
public class Test_login {
@Test
public void test_login(@Mocked final Intent in) {
FragmentActivity frag = Robolectric.buildActivity(MainActivity.class).create().get();
}
}
但我得到了这个堆栈跟踪:
java.lang.RuntimeException: java.lang.NoSuchMethodException: org.udg.pds.simpleapp_android.roboelectric.Test_login.test_login()
at org.robolectric.RobolectricTestRunner$2.evaluate(RobolectricTestRunner.java:201)
at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4ClassRunner.java:79)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:71)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:49)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
at org.robolectric.RobolectricTestRunner$1.evaluate(RobolectricTestRunner.java:175)
at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
at org.junit.runner.JUnitCore.run(JUnitCore.java:157)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:77)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:195)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:63)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)
Caused by: java.lang.NoSuchMethodException: org.udg.pds.simpleapp_android.roboelectric.Test_login.test_login()
at java.lang.Class.getMethod(Class.java:1665)
at org.robolectric.RobolectricTestRunner$2.evaluate(RobolectricTestRunner.java:199)
... 19 more
我也尝试过使用这个跑步者:
public class MyTestRunner extends RobolectricTestRunner {
static { Startup.initializeIfPossible(); }
public MyTestRunner(Class<?> testClass) throws InitializationError {
super(testClass);
}
}
但它并没有什么不同。我已经尝试了类路径(jmockit,robolectric,junit)的不同命令而没有运气。一旦我尝试在测试中使用@Injectable或@Mocked,我就会遇到此异常。我看过this和this,但没有帮助。
任何提示问题在哪里?谢谢
答案 0 :(得分:1)
发生NoSuchMethodException
因为Robolectric自定义JUnit测试运行器试图查找无参数测试方法test_login()
,而不是具有参数的实际测试方法。
解决方法是仅使用模拟字段(在测试类级别使用@Mocked
,@Injectable
等声明),避免使用模拟参数。