Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public EspressoTest() {
* 这样写会多写代码,并且会出错.
* 比如此例,输入太慢了,程序就执行了.
*/
@Test
public void testSayHello() {
onView(withId(R.id.editText)).perform(typeText(STRING_TO_BE_TYPED),
closeSoftKeyboard()); //line 1
Expand All @@ -46,4 +47,4 @@ public void testSayHello() {
String expectedText = "Hello, " + STRING_TO_BE_TYPED + "!";
onView(withId(R.id.textView)).check(matches(withText(expectedText))); //line 3
}
}
}