Static imports

This commit is contained in:
str4d
2015-06-20 12:01:06 +00:00
parent 82e3aa8efa
commit b4e9a3313c

View File

@@ -1,7 +1,6 @@
package i2p.bote.android; package i2p.bote.android;
import android.support.test.espresso.NoMatchingViewException; import android.support.test.espresso.NoMatchingViewException;
import android.support.test.espresso.intent.matcher.IntentMatchers;
import android.support.test.espresso.intent.rule.IntentsTestRule; import android.support.test.espresso.intent.rule.IntentsTestRule;
import android.support.test.runner.AndroidJUnit4; import android.support.test.runner.AndroidJUnit4;
import android.support.v4.widget.DrawerLayout; import android.support.v4.widget.DrawerLayout;
@@ -20,6 +19,7 @@ import static android.support.test.espresso.action.ViewActions.swipeDown;
import static android.support.test.espresso.action.ViewActions.swipeRight; import static android.support.test.espresso.action.ViewActions.swipeRight;
import static android.support.test.espresso.assertion.ViewAssertions.matches; import static android.support.test.espresso.assertion.ViewAssertions.matches;
import static android.support.test.espresso.intent.Intents.intended; import static android.support.test.espresso.intent.Intents.intended;
import static android.support.test.espresso.intent.matcher.IntentMatchers.hasComponent;
import static android.support.test.espresso.matcher.RootMatchers.withDecorView; import static android.support.test.espresso.matcher.RootMatchers.withDecorView;
import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed; import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed;
import static android.support.test.espresso.matcher.ViewMatchers.withClassName; import static android.support.test.espresso.matcher.ViewMatchers.withClassName;
@@ -62,20 +62,20 @@ public class EmailListActivityTest {
@Test @Test
public void newEmail() { public void newEmail() {
onView(withId(R.id.promoted_action)).perform(click()); onView(withId(R.id.promoted_action)).perform(click());
intended(IntentMatchers.hasComponent(NewEmailActivity.class.getName())); intended(hasComponent(NewEmailActivity.class.getName()));
} }
@Test @Test
public void openSettings() { public void openSettings() {
openActionBarOverflowOrOptionsMenu(mActivityRule.getActivity()); openActionBarOverflowOrOptionsMenu(mActivityRule.getActivity());
onView(withText(R.string.action_settings)).perform(click()); onView(withText(R.string.action_settings)).perform(click());
intended(IntentMatchers.hasComponent(SettingsActivity.class.getName())); intended(hasComponent(SettingsActivity.class.getName()));
} }
@Test @Test
public void openHelp() { public void openHelp() {
openActionBarOverflowOrOptionsMenu(mActivityRule.getActivity()); openActionBarOverflowOrOptionsMenu(mActivityRule.getActivity());
onView(withText(R.string.help)).perform(click()); onView(withText(R.string.help)).perform(click());
intended(IntentMatchers.hasComponent(HelpActivity.class.getName())); intended(hasComponent(HelpActivity.class.getName()));
} }
} }