Robolectric: 窗口创建失败

3

我正在尝试使用Robolectric来避免每次测试运行时启动模拟器。我按照这个(非常好的)教程设置了一切:http://www.peterfriese.de/unit-testing-android-apps-with-robolectric-and-eclipse/。不幸的是,我遇到了一个错误:

java.lang.RuntimeException: Window creation failed!
at org.robolectric.shadows.ShadowActivity.getWindow(ShadowActivity.java:329)
at org.robolectric.shadows.ShadowActivity.findViewById(ShadowActivity.java:275)
at android.app.Activity.findViewById(Activity.java)
at MainActivityTest.shouldNotBeNull(MainActivityTest.java:32)
    (...)

这是我的代码:
import static org.junit.Assert.assertTrue;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.Robolectric;
import org.robolectric.RobolectricTestRunner;
import static org.fest.assertions.api.ANDROID.assertThat;


import android.widget.Button;
import android.widget.EditText;


import com.abs.databaseprototype.MainActivity;
import com.abs.databaseprototype.R;

@RunWith(RobolectricTestRunner.class)
public class MainActivityTest {
private MainActivity activity;

@Before
public void setup() {
  activity = Robolectric.buildActivity(MainActivity.class).get();
}
@Test
public void shouldNotBeNull() {
  assertThat(activity).isNotNull();

  Button btnPatients = (Button) activity.findViewById(R.id.btnPatients);
  assertThat(btnPatients).isNotNull();
//
//    Button btnSpecialties = (Button) activity.findViewById(R.id.btnSpecialites);
//    assertThat(btnSpecialties).isNotNull();
//
//    Button btnTreat = (Button) activity.findViewById(R.id.btnTreat);
//    assertThat(btnTreat).isNotNull();
//    
//    EditText editText = (EditText) activity.findViewById(R.id.edit_query);
//    assertThat(editText).isNotNull();
      }

  @Test
  public void shouldFail() {
      assertTrue(false);
  }
}

有什么想法吗?

你解决了吗?如果是,请选择一个答案。 - Jared Burrows
1个回答

9

好的,我找到了解决方法。 教程有误。必须先创建活动,所以写 activity = Robolectric.buildActivity(LoginActivity.class).create().get(); 而不是 activity = Robolectric.buildActivity(LoginActivity.class).get(); 就这样。 今天我学到的东西:始终要检查文档。 :-)


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接