Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

testSayHello方法头部缺少@Test #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
}
}
}