File tree Expand file tree Collapse file tree 4 files changed +4
-6
lines changed
espresso/core/java/androidx/test/espresso Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,9 @@ VIEW_INTERACTION = [
6161 "InteractionResultsHandler.java" ,
6262]
6363
64+ INTERNAL_API_ANNOTATION = [
65+ ]
66+
6467android_library (
6568 name = "view-interaction" ,
6669 srcs = VIEW_INTERACTION ,
@@ -119,7 +122,7 @@ android_library(
119122 name = "espresso" ,
120123 srcs = glob (
121124 ["*.java" ],
122- exclude = BASE_LAYER_INTERFACES + PUBLIC_FRAMEWORK_LAYER + ESPRESSO_GRAPH + VIEW_INTERACTION ,
125+ exclude = BASE_LAYER_INTERFACES + PUBLIC_FRAMEWORK_LAYER + ESPRESSO_GRAPH + VIEW_INTERACTION + INTERNAL_API_ANNOTATION ,
123126 ),
124127 exports = [
125128 # Anything listed here is instantly available to targets that
Original file line number Diff line number Diff line change 1919import static androidx .test .internal .util .Checks .checkArgument ;
2020import static androidx .test .internal .util .Checks .checkNotNull ;
2121
22- import androidx .test .annotation .ExperimentalTestApi ;
2322import java .util .concurrent .TimeUnit ;
2423
2524/**
Original file line number Diff line number Diff line change @@ -76,8 +76,6 @@ package androidx.test.espresso {
7676 method public static void setIdlingResourceTimeout(long, java.util.concurrent.TimeUnit!);
7777 method public static void setMasterPolicyTimeout(long, java.util.concurrent.TimeUnit!);
7878 method public static void setMasterPolicyTimeoutWhenDebuggerAttached(boolean);
79- method @androidx.test.annotation.ExperimentalTestApi public static void unsafeMakeIdlingResourceErrorPolicyWarning();
80- method @androidx.test.annotation.ExperimentalTestApi public static void unsafeMakeMasterPolicyWarning();
8179 }
8280
8381 public final class IdlingPolicy {
@@ -721,7 +719,6 @@ package androidx.test.espresso.matcher {
721719 method public static org.hamcrest.Matcher<android.view.View!>! isRoot();
722720 method public static org.hamcrest.Matcher<android.view.View!>! isSelected();
723721 method public static org.hamcrest.Matcher<android.view.View!>! supportsInputMethods();
724- method @androidx.test.annotation.ExperimentalTestApi public static org.hamcrest.Matcher<android.view.View!>! thatMatchesFirst(org.hamcrest.Matcher<android.view.View!>!);
725722 method public static org.hamcrest.Matcher<android.view.View!>! withAlpha(float);
726723 method public static org.hamcrest.Matcher<android.view.View!>! withChild(org.hamcrest.Matcher<android.view.View!>!);
727724 method public static org.hamcrest.Matcher<android.view.View!>! withClassName(org.hamcrest.Matcher<java.lang.String!>!);
Original file line number Diff line number Diff line change 4444import androidx .annotation .NonNull ;
4545import androidx .annotation .Nullable ;
4646import androidx .annotation .VisibleForTesting ;
47- import androidx .test .annotation .ExperimentalTestApi ;
4847import androidx .test .espresso .remote .annotation .RemoteMsgConstructor ;
4948import androidx .test .espresso .remote .annotation .RemoteMsgField ;
5049import androidx .test .espresso .util .HumanReadables ;
You can’t perform that action at this time.
0 commit comments