4

我正在尝试 TDD/测试 android 的 textView 的文本颜色。但是所有属性似乎都返回 0 或 null,有人知道为什么吗?

创建文本视图的代码:

public void setupTextView() {

    LinearLayout layout = (LinearLayout) findViewById(R.id.layout);
    TextView textView = new TextView(this);

    textView.setText(job.getName());

    if (job.getLastBuild().getBuildStatus().equals("SUCCESS")) {

        textView.setTextColor(Color.parseColor("#007000"));

    } else {

       textView.setTextColor(Color.parseColor("#FF0000"));

    }

    layout.addView(textView);

}

我已经运行了应用程序并且上面的代码有效。

我尝试在测试代码中访问的属性:

@Test
public void firstTextViewShouldReflectPassingJobStatus() throws Exception {

    LinearLayout layout = layout = (LinearLayout) activity.findViewById(R.id.layout);

    TextView gomoTextView = (TextView) layout.getChildAt(0);

    System.out.println(gomoTextView.getCurrentTextColor()); //Returns 0
    System.out.println(gomoTextView.getTextColors()); //Returns null
    System.out.println(gomoTextView.getSolidColor()); //Returns 0
    System.out.println(gomoTextView.getCurrentHintTextColor()); //Returns 0

    //I also tried using `Robolectric.shadowOf()`:
    ShadowTextView shadowGomoTextView = Robolectric.shadowOf(gomoTextView);

    System.out.println(shadowGomoTextView.getTextColorHexValue()); //Returns 0
    System.out.println(shadowGomoTextView.getHintColorHexValue()); //Returns null

}

更新以回答评论

我在单元测试类中有一个调用onCreate()

private LinearLayout layout;
private HomeActivity activity;

@Before
public void setUp() throws Exception {

    activity = spy(new HomeActivity());
    Jenkins mockJenkins = TestUtilities.getTestJenkins();
    when(activity.getJenkins()).thenReturn(mockJenkins);

    activity.onCreate(null);
    layout = (LinearLayout) activity.findViewById(R.id.layout);

}

以及 HomeActivity 类中的 onCreate 方法:

@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    Jenkins jenkins = getJenkins();
    displayJenkins(jenkins);
}

然后显示詹金斯调用其他方法,其中包括setupTextView()

4

1 回答 1

2

查看尚未实施的来源。我建议你按照这里的描述实现你自己的影子。

Robolectric 2.0 已升级为 alpha 状态。我认为您的问题应该在发布期间得到解决,因为他们将尽可能多地使用真正的 Android 源代码。

于 2013-02-13T12:58:56.537 回答