PPaste!

Home - All the pastes - Authored by Thooms

Raw version

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
public class NavigationMainActivityTest {
    private static final String PACKAGE_NAME = "org.stayhigh.bde";

    @Rule
    public IntentsTestRule<MainActivity> mIntentsRule = new IntentsTestRule<>(MainActivity.class);

    @Test
    public void moveToParty() {
        onView(withId(R.id.imageButtonParty))
                .perform(click());

        intended(allOf(
                hasComponent(hasShortClassName(".activity.PartiesActivity")),
                toPackage(PACKAGE_NAME)));
    }