Rit*_*ave 3 java junit android robolectric
我继承了遗留的Android项目并开始添加Robolectric 3和JUnit 4测试用例.遗憾的是,目前主要的Application类无法初始化,因为意大利面条代码和框架在Robolectric中不起作用.我想替换我的应用程序类进行测试.但在我甚至可以更新RuntimeEnviroment.application变量之前,Robolectric崩溃了.有没有办法在Robolectric中禁用清单应用程序创建?
这是我一直在努力做的事情:
@RunWith(RobolectricGradleTestRunner.class)
@Config(constants = BuildConfig.class, sdk = 21, manifest = Config.NONE)
public class TestClass {
@Before
public void setUp() {
RuntimeEnvironment.application = new Application();
}
@Test
public void testFunc() {
// some testing goes here
}
}
Run Code Online (Sandbox Code Playgroud)
但由于Parse框架,它失败了:
java.lang.RuntimeException
at org.robolectric.util.SimpleFuture.run(SimpleFuture.java:61)
at org.robolectric.shadows.ShadowAsyncTask$2.run(ShadowAsyncTask.java:96)
at org.robolectric.util.Scheduler.runOrQueueRunnable(Scheduler.java:230)
at org.robolectric.util.Scheduler.postDelayed(Scheduler.java:85)
at org.robolectric.util.Scheduler.post(Scheduler.java:72)
at org.robolectric.shadows.ShadowAsyncTask.execute(ShadowAsyncTask.java:93)
at android.os.AsyncTask.execute(AsyncTask.java)
at com.facebook.internal.Utility.loadAppSettingsAsync(Utility.java:771)
at com.facebook.FacebookSdk.sdkInitialize(FacebookSdk.java:167)
at com.facebook.FacebookSdk.sdkInitialize(FacebookSdk.java:146)
at com.parse.FacebookController$FacebookSdkDelegateImpl.initialize(FacebookController.java:187)
at com.parse.FacebookController.initialize(FacebookController.java:70)
at com.parse.ParseFacebookUtils.initialize(ParseFacebookUtils.java:108)
at com.parse.ParseFacebookUtils.initialize(ParseFacebookUtils.java:92)
at MyApplication.initParse(StrongliftsApplication.java:174)
at MyApplication.onCreate(StrongliftsApplication.java:112)
at org.robolectric.internal.ParallelUniverse.setUpApplicationState(ParallelUniverse.java:140)
at org.robolectric.RobolectricTestRunner.setUpApplicationState(RobolectricTestRunner.java:433)
at org.robolectric.RobolectricTestRunner$2.evaluate(RobolectricTestRunner.java:240)
at org.robolectric.RobolectricTestRunner.runChild(RobolectricTestRunner.java:188)
at org.robolectric.RobolectricTestRunner.runChild(RobolectricTestRunner.java:54)
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:152)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runners.Suite.runChild(Suite.java:128)
at org.junit.runners.Suite.runChild(Suite.java:27)
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.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:78)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:212)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:68)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)
Run Code Online (Sandbox Code Playgroud)
因此,Robolectric开发人员发现了这种情况并且@Config指令允许应用程序覆盖.另外,显示覆盖对我没有任何帮助,因此可以将其删除.
@RunWith(RobolectricGradleTestRunner.class)
@Config(constants = BuildConfig.class, sdk = 21, application = MyTestApplication.class)
public class TestClass {
@Test
public void testFunc() {
// some testing goes here
}
}
Run Code Online (Sandbox Code Playgroud)
由于我们的应用程序使用单例模式,我还必须初始化单例实例.我忽略了对purpouse的所有其他初始化,因为它主要是在框架中.这是我的MyTestApplication的样子:
public class MyTestApplication extends MyApplication {
@Override
public void onCreate() {
MyApplication.instance = this;
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
873 次 |
| 最近记录: |