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 = [
61
61
"InteractionResultsHandler.java" ,
62
62
]
63
63
64
+ INTERNAL_API_ANNOTATION = [
65
+ ]
66
+
64
67
android_library (
65
68
name = "view-interaction" ,
66
69
srcs = VIEW_INTERACTION ,
@@ -119,7 +122,7 @@ android_library(
119
122
name = "espresso" ,
120
123
srcs = glob (
121
124
["*.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 ,
123
126
),
124
127
exports = [
125
128
# Anything listed here is instantly available to targets that
Original file line number Diff line number Diff line change 19
19
import static androidx .test .internal .util .Checks .checkArgument ;
20
20
import static androidx .test .internal .util .Checks .checkNotNull ;
21
21
22
- import androidx .test .annotation .ExperimentalTestApi ;
23
22
import java .util .concurrent .TimeUnit ;
24
23
25
24
/**
Original file line number Diff line number Diff line change @@ -76,8 +76,6 @@ package androidx.test.espresso {
76
76
method public static void setIdlingResourceTimeout(long, java.util.concurrent.TimeUnit!);
77
77
method public static void setMasterPolicyTimeout(long, java.util.concurrent.TimeUnit!);
78
78
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();
81
79
}
82
80
83
81
public final class IdlingPolicy {
@@ -721,7 +719,6 @@ package androidx.test.espresso.matcher {
721
719
method public static org.hamcrest.Matcher<android.view.View!>! isRoot();
722
720
method public static org.hamcrest.Matcher<android.view.View!>! isSelected();
723
721
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!>!);
725
722
method public static org.hamcrest.Matcher<android.view.View!>! withAlpha(float);
726
723
method public static org.hamcrest.Matcher<android.view.View!>! withChild(org.hamcrest.Matcher<android.view.View!>!);
727
724
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 44
44
import androidx .annotation .NonNull ;
45
45
import androidx .annotation .Nullable ;
46
46
import androidx .annotation .VisibleForTesting ;
47
- import androidx .test .annotation .ExperimentalTestApi ;
48
47
import androidx .test .espresso .remote .annotation .RemoteMsgConstructor ;
49
48
import androidx .test .espresso .remote .annotation .RemoteMsgField ;
50
49
import androidx .test .espresso .util .HumanReadables ;
You can’t perform that action at this time.
0 commit comments