4

アンドロイド用のtextViewのテキストカラーをTDD/テストしようとしています。ただし、すべてのプロパティが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);
}

そして、display jenkinsは、以下を含む他のメソッドのロードを呼び出しますsetupTextView()

4

1 に答える 1

2

ソースを見ると、まだ実装されていません。ここで説明するように、独自のシャドウを実装することをお勧めします。

Robolectric2.0はアルファ状態に昇格しました。彼らは可能な限り実際のAndroidソースコードを使用するので、リリース中に問題を修正する必要があると思います。

于 2013-02-13T12:58:56.537 に答える