Android Introduction

201-Your reminder to trust the process!

Android Introduction


Android SharedPreferences/ Espresso Testing/Espresso Test Recorder/Android Tasks



Android SharedPreferences

Save Key-value data:

Get a handle to shared preferences:

Espresso

The following code snippet shows an example of an Espresso test:

@Test 
public void greeterSaysHello() {
    onView(withId(R.id.name_field)).perform(typeText("Steve"));
    onView(withId(R.id.greet_button)).perform(click());
    onView(withText("Hello Steve!")).check(matches(isDisplayed()));
}

What does Espresso do?

Espresso Test Recorder