Revert "Remove "Backup Calling" button from Settings UI"
Revert submission 20541028-remove_backup_calling Reason for revert: Disables backup calling on master builds Reverted Changes: Iff2665829:Remove "Backup Calling" button from Settings UI I5523465a6:Remove "Backup Calling" button from Settings UI Change-Id: I415cfddfb365dc8911f2ded418892ceb3834ba24
This commit is contained in:
committed by
Android (Google) Code Review
parent
fa589ca6f1
commit
9adfa375ea
@@ -28,13 +28,9 @@ import androidx.test.ext.junit.runners.AndroidJUnit4;
|
||||
import com.android.settings.core.BasePreferenceController;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
/**
|
||||
* Deprecated ToDo: b/260059444 remove it next version
|
||||
*/
|
||||
@RunWith(AndroidJUnit4.class)
|
||||
public class BackupCallingPreferenceControllerTest {
|
||||
private static final int SUB_ID = 2;
|
||||
@@ -51,7 +47,6 @@ public class BackupCallingPreferenceControllerTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void controller_isUnavailable() {
|
||||
assertThat(mController.getAvailabilityStatus())
|
||||
.isEqualTo(BasePreferenceController.CONDITIONALLY_UNAVAILABLE);
|
||||
|
@@ -40,7 +40,6 @@ import com.android.settings.network.CarrierConfigCache;
|
||||
import com.android.settingslib.core.lifecycle.Lifecycle;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.mockito.Mock;
|
||||
@@ -48,9 +47,6 @@ import org.mockito.MockitoAnnotations;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Deprecated ToDo: b/260059444 remove it next version
|
||||
*/
|
||||
@RunWith(AndroidJUnit4.class)
|
||||
public class NetworkProviderBackupCallingGroupTest {
|
||||
|
||||
@@ -137,14 +133,12 @@ public class NetworkProviderBackupCallingGroupTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void shouldShowBackupCallingForSub_invalidSubId_returnFalse() {
|
||||
assertThat(mNetworkProviderBackupCallingGroup.hasBackupCallingFeature(
|
||||
SubscriptionManager.INVALID_SUBSCRIPTION_ID)).isEqualTo(false);
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void shouldShowBackupCallingForSub_carrierConfigIsUnavailable_returnFalse() {
|
||||
mCarrierConfig.putBoolean(CarrierConfigManager.KEY_CARRIER_CROSS_SIM_IMS_AVAILABLE_BOOL,
|
||||
false);
|
||||
@@ -154,7 +148,6 @@ public class NetworkProviderBackupCallingGroupTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void
|
||||
shouldShowBackupCallingForSub_crossSimDisabled_returnFalse() {
|
||||
doReturn(false).when(mNetworkProviderBackupCallingGroup).isCrossSimEnabledByPlatform(
|
||||
@@ -165,7 +158,6 @@ public class NetworkProviderBackupCallingGroupTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void shouldBackupCallingForSub_crossSimEnabled_returnTrue() {
|
||||
doReturn(true).when(mNetworkProviderBackupCallingGroup).isCrossSimEnabledByPlatform(
|
||||
mContext, SUB_ID_1);
|
||||
|
Reference in New Issue
Block a user