Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33502f21 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Move the ImsService tests to CTS, requiring @TestApi"

parents 07a945d9 9b623b66
Loading
Loading
Loading
Loading
+992 −0

File changed.

Preview size limit exceeded, changes collapsed.

+404 −0

File changed.

Preview size limit exceeded, changes collapsed.

+1 −0
Original line number Diff line number Diff line
@@ -45,6 +45,7 @@ public final class AccessNetworkConstants {
     * @hide
     */
    @SystemApi
    @TestApi
    public static final int TRANSPORT_TYPE_INVALID = -1;

    /**
+2 −0
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@ import android.annotation.IntDef;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.SystemApi;
import android.annotation.TestApi;
import android.os.Parcel;
import android.os.Parcelable;

@@ -40,6 +41,7 @@ import java.util.Objects;
 * @hide
 */
@SystemApi
@TestApi
public final class CallQuality implements Parcelable {

    // Constants representing the call quality level (see #CallQuality);
+7 −0
Original line number Diff line number Diff line
@@ -31,6 +31,7 @@ import android.annotation.SdkConstant.SdkConstantType;
import android.annotation.SuppressAutoDoc;
import android.annotation.SystemApi;
import android.annotation.SystemService;
import android.annotation.TestApi;
import android.annotation.UnsupportedAppUsage;
import android.app.BroadcastOptions;
import android.app.PendingIntent;
@@ -155,6 +156,7 @@ public class SubscriptionManager {
     */
    @NonNull
    @SystemApi
    @TestApi
    public static final Uri WFC_ENABLED_CONTENT_URI = Uri.withAppendedPath(CONTENT_URI, "wfc");

    /**
@@ -174,6 +176,7 @@ public class SubscriptionManager {
     */
    @NonNull
    @SystemApi
    @TestApi
    public static final Uri ADVANCED_CALLING_ENABLED_CONTENT_URI = Uri.withAppendedPath(
            CONTENT_URI, "advanced_calling");

@@ -192,6 +195,7 @@ public class SubscriptionManager {
     */
    @NonNull
    @SystemApi
    @TestApi
    public static final Uri WFC_MODE_CONTENT_URI = Uri.withAppendedPath(CONTENT_URI, "wfc_mode");

    /**
@@ -209,6 +213,7 @@ public class SubscriptionManager {
     */
    @NonNull
    @SystemApi
    @TestApi
    public static final Uri WFC_ROAMING_MODE_CONTENT_URI = Uri.withAppendedPath(
            CONTENT_URI, "wfc_roaming_mode");

@@ -228,6 +233,7 @@ public class SubscriptionManager {
     */
    @NonNull
    @SystemApi
    @TestApi
    public static final Uri VT_ENABLED_CONTENT_URI = Uri.withAppendedPath(
            CONTENT_URI, "vt_enabled");

@@ -246,6 +252,7 @@ public class SubscriptionManager {
     */
    @NonNull
    @SystemApi
    @TestApi
    public static final Uri WFC_ROAMING_ENABLED_CONTENT_URI = Uri.withAppendedPath(
            CONTENT_URI, "wfc_roaming_enabled");

Loading