Skip to content

Commit b33f54c

Browse files
brettchabotcopybara-androidxtest
authored andcommitted
Internal
PiperOrigin-RevId: 632540085
1 parent 3dbc74d commit b33f54c

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

espresso/core/java/androidx/test/espresso/BUILD

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ VIEW_INTERACTION = [
6161
"InteractionResultsHandler.java",
6262
]
6363

64+
INTERNAL_API_ANNOTATION = [
65+
]
66+
6467
android_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

espresso/core/java/androidx/test/espresso/IdlingPolicies.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import static androidx.test.internal.util.Checks.checkArgument;
2020
import static androidx.test.internal.util.Checks.checkNotNull;
2121

22-
import androidx.test.annotation.ExperimentalTestApi;
2322
import java.util.concurrent.TimeUnit;
2423

2524
/**

espresso/core/java/androidx/test/espresso/api/current_public.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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!>!);

espresso/core/java/androidx/test/espresso/matcher/ViewMatchers.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
import androidx.annotation.NonNull;
4545
import androidx.annotation.Nullable;
4646
import androidx.annotation.VisibleForTesting;
47-
import androidx.test.annotation.ExperimentalTestApi;
4847
import androidx.test.espresso.remote.annotation.RemoteMsgConstructor;
4948
import androidx.test.espresso.remote.annotation.RemoteMsgField;
5049
import androidx.test.espresso.util.HumanReadables;

0 commit comments

Comments
 (0)