File tree Expand file tree Collapse file tree 2 files changed +0
-40
lines changed
samples/showcase/src/androidTest/java/com/facebook/fresco/samples/showcase Expand file tree Collapse file tree 2 files changed +0
-40
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1616import static androidx .test .espresso .matcher .ViewMatchers .withId ;
1717import static androidx .test .espresso .matcher .ViewMatchers .withParent ;
1818import static androidx .test .espresso .matcher .ViewMatchers .withText ;
19- import static com .facebook .fresco .samples .showcase .DraweeViewHasImageMatcher .hasImage ;
2019import static org .hamcrest .CoreMatchers .allOf ;
2120
2221import android .view .View ;
2827import androidx .test .runner .AndroidJUnit4 ;
2928import com .google .android .material .internal .NavigationMenuItemView ;
3029import org .hamcrest .Matcher ;
31- import org .junit .Ignore ;
3230import org .junit .Rule ;
3331import org .junit .Test ;
3432import org .junit .runner .RunWith ;
@@ -49,14 +47,6 @@ public void testRunTheShowcaseApp() {
4947 .check (matches (withText (R .string .welcome_title )));
5048 }
5149
52- @ Test
53- @ Ignore /* TODO T34443404, Circle CI instrumentation test fails due to network issue */
54- public void testShowImage () {
55- openScreenFromMenu (R .string .drawee_simple_title );
56- onView (withId (R .id .drawee_view )).perform (waitFor (5000 ));
57- onView (withId (R .id .drawee_view )).check (matches (hasImage ()));
58- }
59-
6050 private void openScreenFromMenu (int title ) {
6151 onView (withContentDescription (R .string .navigation_drawer_open )).perform (click ());
6252 onView (allOf (withParent (isAssignableFrom (NavigationMenuItemView .class )), withText (title )))
You can’t perform that action at this time.
0 commit comments