Robolectric:窗口创建失败

tre*_*ore 2 eclipse testing android robolectric

我正在尝试使用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)
    (...)
Run Code Online (Sandbox Code Playgroud)

这是我的代码:

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);
  }
}
Run Code Online (Sandbox Code Playgroud)

有任何想法吗?

tre*_*ore 8

好的,我找到了解决方案.教程中有一个错误.您必须首先创建活动,因此write activity = Robolectric.buildActivity(LoginActivity.class).create().get(); 而不是activity = Robolectric.buildActivity(LoginActivity.class).get(); 你去吧 我今天学到的东西:请务必查看文档.:-)