Remove unused test
This commit is contained in:
parent
d69baed0cf
commit
9297211785
|
@ -1,27 +0,0 @@
|
||||||
package eu.stuifzand.micropub;
|
|
||||||
|
|
||||||
import android.support.test.filters.LargeTest;
|
|
||||||
import android.support.test.rule.ActivityTestRule;
|
|
||||||
import android.support.test.runner.AndroidJUnit4;
|
|
||||||
|
|
||||||
import org.junit.Rule;
|
|
||||||
import org.junit.Test;
|
|
||||||
import org.junit.runner.RunWith;
|
|
||||||
|
|
||||||
import static android.support.test.espresso.Espresso.onView;
|
|
||||||
import static android.support.test.espresso.action.ViewActions.typeText;
|
|
||||||
import static android.support.test.espresso.matcher.ViewMatchers.withId;
|
|
||||||
|
|
||||||
@RunWith(AndroidJUnit4.class)
|
|
||||||
@LargeTest
|
|
||||||
public class HelloWorldEspressoTest {
|
|
||||||
|
|
||||||
@Rule
|
|
||||||
public ActivityTestRule<MainActivity> mActivityRule =
|
|
||||||
new ActivityTestRule(MainActivity.class);
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void createPost() throws Exception {
|
|
||||||
onView(withId(R.id.content)).perform(typeText("This is a test message"));
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user