Espresso TestingFramework-テストレコーダー
テストケースを書くのは退屈な仕事です。espressoは非常に簡単で柔軟なAPIを提供しますが、テストケースの作成は怠惰で時間のかかる作業になる可能性があります。これを克服するために、AndroidStudioはエスプレッソテストケースを記録および生成する機能を提供します。Record Espresso Testは、Runメニューから利用できます。
以下に説明する手順に従って、HelloWorldAppに簡単なテストケースを記録しましょう。
Android Studioを開き、続いてHelloWorldAppアプリケーションを開きます。
[実行] → [エスプレッソテストの記録]をクリックして、[ MainActivity]を選択します。
レコーダー、次のようにスクリーンショットは、あります
[アサーションの追加]をクリックします。以下のようなアプリケーション画面が開きます。
Hello Worldをクリックしてください!。レコーダーには、画面のテキストビューを選択するには、次のように、あります
もう一度[アサーションの保存]をクリックします。これにより、アサーションが保存され、次のように表示されます。
[ OK]をクリックします。新しいウィンドウが開き、テストケースの名前が尋ねられます。デフォルト名はMainActivityTestです
必要に応じて、テストケース名を変更します。
もう一度、[ OK ]をクリックします。これにより、記録されたテストケースを含むファイルMainActivityTestが生成されます。完全なコーディングは次のとおりです。
package com.tutorialspoint.espressosamples.helloworldapp;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewParent;
import org.hamcrest.Description;
import org.hamcrest.Matcher;
import org.hamcrest.TypeSafeMatcher;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import androidx.test.espresso.ViewInteraction;
import androidx.test.filters.LargeTest;
import androidx.test.rule.ActivityTestRule;
import androidx.test.runner.AndroidJUnit4;
import static androidx.test.espresso.Espresso.onView;
import static androidx.test.espresso.assertion.ViewAssertions.matches;
import static androidx.test.espresso.matcher.ViewMatchers.isDisplayed;
import static androidx.test.espresso.matcher.ViewMatchers.withId;
import static androidx.test.espresso.matcher.ViewMatchers.withText;
import static org.hamcrest.Matchers.allOf;
@LargeTest
@RunWith(AndroidJUnit4.class)
public class MainActivityTest {
@Rule
public ActivityTestRule<MainActivity> mActivityTestRule = new ActivityTestRule<>(MainActivity.class);
@Test
public void mainActivityTest() {
ViewInteraction textView = onView(
allOf(withId(R.id.textView_hello), withText("Hello World!"),
childAtPosition(childAtPosition(withId(android.R.id.content),
0),0),isDisplayed()));
textView.check(matches(withText("Hello World!")));
}
private static Matcher<View> childAtPosition(
final Matcher<View> parentMatcher, final int position) {
return new TypeSafeMatcher<View>() {
@Override
public void describeTo(Description description) {
description.appendText("Child at position " + position + " in parent ");
parentMatcher.describeTo(description);
}
@Override
public boolean matchesSafely(View view) {
ViewParent parent = view.getParent();
return parent instanceof ViewGroup &&
parentMatcher.matches(parent)&& view.equals(((ViewGroup)
parent).getChildAt(position));
}
};
}
}
最後に、コンテキストメニューを使用してテストを実行し、テストケースが実行されるかどうかを確認します。