Slide 11
Slide 11 text
&TQSFTTPͬͨྫ
@RunWith(AndroidJUnit4.class)
public class EspressoTest
extends ActivityInstrumentationTestCase2 {
〜略〜
@Test
public void squareTest() {
onView(withId(R.id.result_text)).check(match(withText(“2”)));
onView(withId(R.id.square_button)).perform(click());
onView(withId(R.id.result_text)).check(match(withText(“4”)));
}
〜略〜
}
テスト対象
特定の要素に
テスト内容
特定の文字列が表示されている