Home
last modified time | relevance | path

Searched refs:mContext (Results 1 – 25 of 714) sorted by relevance

12345678910>>...29

/cts/tests/tests/content/src/android/content/cts/
DContextTest.java117 protected Context mContext; field in ContextTest
129 mContext = getContextUnderTest(); in setUp()
130 mContext.setTheme(R.style.Test_Theme); in setUp()
136 mOriginalWallpaper = (BitmapDrawable) mContext.getWallpaper(); in setUp()
142 mContext.setWallpaper(mOriginalWallpaper.getBitmap()); in tearDown()
146 mContext.unregisterReceiver(receiver); in tearDown()
153 String testString = mContext.getString(R.string.context_test_string1); in testGetString()
156 testString = mContext.getString(R.string.context_test_string1, "expected"); in testGetString()
159 testString = mContext.getString(R.string.context_test_string2); in testGetString()
164 testString = mContext.getString(0, "expected"); in testGetString()
[all …]
/cts/tests/tests/provider/src/android/provider/cts/
DBlockedNumberContractTest.java48 private Context mContext; field in BlockedNumberContractTest
59 mContext = getInstrumentation().getContext(); in setUp()
60 mContentResolver = mContext.getContentResolver(); in setUp()
62 mIsSystemUser = isSystemUser(mContext); in setUp()
81 TelephonyManager telephonyManager = mContext.getSystemService(TelephonyManager.class); in testProviderInteractionsAsRegularApp_fails()
83 if (telephonyManager.checkCarrierPrivilegesForPackage(mContext.getPackageName()) in testProviderInteractionsAsRegularApp_fails()
109 BlockedNumberContract.isBlocked(mContext, "123"); in testProviderInteractionsAsRegularApp_fails()
115 BlockedNumberContract.unblock(mContext, "1234567890"); in testProviderInteractionsAsRegularApp_fails()
120 assertTrue(BlockedNumberContract.canCurrentUserBlockNumbers(mContext)); in testProviderInteractionsAsRegularApp_fails()
140 assertTrue(BlockedNumberContract.canCurrentUserBlockNumbers(mContext)); in testInsertAndBlockCheck_succeeds()
[all …]
/cts/hostsidetests/appsecurity/test-apps/UsePermissionApp22/src/com/android/cts/usepermission/
DUsePermissionTest22.java41 private final Context mContext = getInstrumentation().getContext(); field in UsePermissionTest22
47 mContext.checkPermission(android.Manifest.permission.READ_CALENDAR, in testCompatDefault()
50 mContext.checkPermission(android.Manifest.permission.WRITE_CALENDAR, in testCompatDefault()
55 try (Cursor c = mContext.getContentResolver().query(uri, null, null, null)) { in testCompatDefault()
70 mContext.checkPermission(android.Manifest.permission.READ_CALENDAR, in testCompatRevoked_part2()
73 mContext.checkPermission(android.Manifest.permission.WRITE_CALENDAR, in testCompatRevoked_part2()
78 try (Cursor c = mContext.getContentResolver().query(uri, null, null, null)) { in testCompatRevoked_part2()
85 assertEquals(PackageManager.PERMISSION_GRANTED, mContext in testAllPermissionsGrantedByDefault()
87 assertEquals(PackageManager.PERMISSION_GRANTED, mContext in testAllPermissionsGrantedByDefault()
90 assertEquals(PackageManager.PERMISSION_GRANTED, mContext in testAllPermissionsGrantedByDefault()
[all …]
/cts/hostsidetests/incident/apps/errorsapp/src/com/android/server/cts/errors/
DErrorsTests.java43 private Context mContext; field in ErrorsTests
47 mContext = InstrumentationRegistry.getTargetContext(); in setUp()
53 + mContext.getPackageName() in setUp()
63 mContext, in testException()
65 mContext.getPackageName() + ":TestProcess", in testException()
68 intent.setClass(mContext, ExceptionActivity.class); in testException()
70 mContext.startActivity(intent); in testException()
82 mContext, in testANR()
84 mContext.getPackageName() + ":TestProcess", in testANR()
87 intent.setClass(mContext, ANRActivity.class); in testANR()
[all …]
/cts/tests/app/src/android/app/cts/
DPendingIntentTest.java45 private Context mContext; field in PendingIntentTest
57 mContext = getContext(); in setUp()
143 mIntent.setClass(mContext, PendingIntentStubActivity.class); in testGetActivity()
145 mPendingIntent = PendingIntent.getActivity(mContext, 1, mIntent, in testGetActivity()
147 assertEquals(mContext.getPackageName(), mPendingIntent.getTargetPackage()); in testGetActivity()
157 mPendingIntent = PendingIntent.getActivity(mContext, 1, mIntent, in testGetActivity()
161 mPendingIntent = PendingIntent.getActivity(mContext, 1, mIntent, in testGetActivity()
183 mIntent.setClass(mContext, MockReceiver.class); in testGetBroadcast()
184 mPendingIntent = PendingIntent.getBroadcast(mContext, 1, mIntent, in testGetBroadcast()
194 mPendingIntent = PendingIntent.getBroadcast(mContext, 1, mIntent, in testGetBroadcast()
[all …]
DActivityManagerProcessStateTest.java110 private Context mContext; field in ActivityManagerProcessStateTest
130 mContext = mInstrumentation.getContext(); in setUp()
146 mContext.stopService(mServiceIntent); in setUp()
147 mContext.stopService(mService2Intent); in setUp()
148 mContext.stopService(mService3Intent); in setUp()
160 mAppInfo[i] = mContext.getPackageManager().getApplicationInfo( in setupWatchers()
204 (PowerManager) mContext.getSystemService(Context.POWER_SERVICE); in isScreenInteractive()
210 (KeyguardManager) mContext.getSystemService(Context.KEYGUARD_SERVICE); in isKeyguardLocked()
242 mContext.startActivity(intent); in startActivityAndWaitForShow()
264 ServiceConnectionHandler conn = new ServiceConnectionHandler(mContext, mServiceIntent, in testUidImportanceListener()
[all …]
DServiceTest.java92 private Context mContext; field in ServiceTest
463 mContext.startService(new Intent(service).putExtras(bundle)); in startExpectResult()
466 mContext.startService(new Intent(service).putExtras(bundle)); in startExpectResult()
471 mContext.stopService(service); in startExpectResult()
475 mContext.stopService(service); in startExpectResult()
578 mContext.bindService(service, conn, 0); in bindExpectResult()
579 mContext.startService(service); in bindExpectResult()
583 mContext.bindService(service, conn2, 0); in bindExpectResult()
586 mContext.unbindService(conn2); in bindExpectResult()
590 mContext.unbindService(conn); in bindExpectResult()
[all …]
DProgressDialogTest.java49 private Context mContext; field in ProgressDialogTest
64 mContext = mActivity; in setUp()
71 new ProgressDialog(mContext); in testProgressDialog1()
76 new ProgressDialog(mContext, R.style.Theme_AlertDialog); in testProgressDialog2()
81 MockProgressDialog pd = new MockProgressDialog(mContext); in testOnStartCreateStop()
96 ProgressDialog.show(mContext, TITLE, MESSAGE); in testShow1()
101 ProgressDialog dialog = ProgressDialog.show(mContext, TITLE, MESSAGE, false); in testShow2()
109 dialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true); in testShow2()
123 ProgressDialog dialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true, false); in testShow3()
137 ProgressDialog dialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true, true); in testShow3()
[all …]
/cts/tests/tests/text/src/android/text/style/cts/
DTextAppearanceSpanTest.java50 private Context mContext; field in TextAppearanceSpanTest
55 mContext = InstrumentationRegistry.getTargetContext(); in setup()
64 new TextAppearanceSpan(mContext, 1); in testConstructor()
65 new TextAppearanceSpan(mContext, 1, 1); in testConstructor()
94 TextAppearanceSpan textAppearanceSpan = new TextAppearanceSpan(mContext, 1); in testGetFamily()
97 textAppearanceSpan = new TextAppearanceSpan(mContext, 1, 1); in testGetFamily()
136 TextAppearanceSpan textAppearanceSpan = new TextAppearanceSpan(mContext, 1); in testGetTextSize()
139 textAppearanceSpan = new TextAppearanceSpan(mContext, 1, 1); in testGetTextSize()
148 TextAppearanceSpan textAppearanceSpan = new TextAppearanceSpan(mContext, 1); in testGetTextStyle()
151 textAppearanceSpan = new TextAppearanceSpan(mContext, 1, 1); in testGetTextStyle()
[all …]
DImageSpanTest.java45 private Context mContext; field in ImageSpanTest
49 mContext = InstrumentationRegistry.getTargetContext(); in setup()
63 new ImageSpan(mContext, b); in testConstructor()
64 new ImageSpan(mContext, b, DynamicDrawableSpan.ALIGN_BOTTOM); in testConstructor()
65 new ImageSpan(mContext, b, DynamicDrawableSpan.ALIGN_BASELINE); in testConstructor()
67 Drawable d = mContext.getResources().getDrawable(R.drawable.pass); in testConstructor()
76 new ImageSpan(mContext, Uri.parse("content://user/a/b")); in testConstructor()
77 new ImageSpan(mContext, Uri.parse("content://user/a/b"), in testConstructor()
79 new ImageSpan(mContext, Uri.parse("content://user/a/b"), in testConstructor()
82 new ImageSpan(mContext, R.drawable.pass); in testConstructor()
[all …]
/cts/tests/tests/widget/src/android/widget/cts/
DCursorAdapterTest.java78 private Context mContext; field in CursorAdapterTest
82 mContext = InstrumentationRegistry.getTargetContext(); in setup()
83 File dbDir = mContext.getDir("tests", Context.MODE_PRIVATE); in setup()
96 final LayoutInflater inflater = LayoutInflater.from(mContext); in setup()
114 new MockCursorAdapter(mContext, mCursor); in testConstructor()
118 new MockCursorAdapter(mContext, mCursor, true); in testConstructor()
135 cursorAdapter.init(mContext, null, false); in testInit()
136 assertSame(mContext, cursorAdapter.getContext()); in testInit()
143 cursorAdapter.init(mContext, null, true); in testInit()
144 assertSame(mContext, cursorAdapter.getContext()); in testInit()
[all …]
DRemoteViewsTest.java112 private Context mContext; field in RemoteViewsTest
122 mContext = mInstrumentation.getTargetContext(); in setup()
124 mResult = mRemoteViews.apply(mContext, null); in setup()
173 CharSequence contentDescription = mContext.getString(R.string.remote_content_description); in testSetContentDescription()
175 mActivityRule.runOnUiThread(() -> mRemoteViews.reapply(mContext, mResult)); in testSetContentDescription()
185 mActivityRule.runOnUiThread(() -> mRemoteViews.reapply(mContext, mResult)); in testSetViewVisibility()
189 mActivityRule.runOnUiThread(() -> mRemoteViews.reapply(mContext, mResult)); in testSetViewVisibility()
193 mActivityRule.runOnUiThread(() -> mRemoteViews.reapply(mContext, mResult)); in testSetViewVisibility()
204 mActivityRule.runOnUiThread(() -> mRemoteViews.reapply(mContext, mResult)); in testSetTextViewText()
208 mActivityRule.runOnUiThread(() -> mRemoteViews.reapply(mContext, mResult)); in testSetTextViewText()
[all …]
DViewSwitcherTest.java49 private Context mContext; field in ViewSwitcherTest
53 mContext = InstrumentationRegistry.getTargetContext(); in setup()
58 new ViewSwitcher(mContext); in testConstructor()
60 new ViewSwitcher(mContext, null); in testConstructor()
62 XmlPullParser parser = mContext.getResources().getXml(R.layout.viewswitcher_layout); in testConstructor()
64 new ViewSwitcher(mContext, attrs); in testConstructor()
69 final ViewSwitcher viewSwitcher = new ViewSwitcher(mContext); in testSetFactory()
78 final ViewSwitcher viewSwitcher = new ViewSwitcher(mContext); in testReset()
80 ListView lv1 = new ListView(mContext); in testReset()
81 ListView lv2 = new ListView(mContext); in testReset()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/wifiaware/testcase/
DDataPathOutOfBandTestCase.java124 setFailureReason(mContext.getString(R.string.aware_status_attach_timeout)); in executeTest()
128 setFailureReason(mContext.getString(R.string.aware_status_attach_fail)); in executeTest()
134 setFailureReason(mContext.getString(R.string.aware_status_attach_fail)); in executeTest()
138 mListener.onTestMsgReceived(mContext.getString(R.string.aware_status_attached)); in executeTest()
144 setFailureReason(mContext.getString(R.string.aware_status_identity_fail)); in executeTest()
203 setFailureReason(mContext.getString(R.string.aware_status_publish_timeout)); in executeTestResponder()
207 setFailureReason(mContext.getString(R.string.aware_status_publish_failed)); in executeTestResponder()
214 setFailureReason(mContext.getString(R.string.aware_status_publish_null_session)); in executeTestResponder()
218 mListener.onTestMsgReceived(mContext.getString(R.string.aware_status_publish_started)); in executeTestResponder()
225 setFailureReason(mContext.getString(R.string.aware_status_receive_timeout)); in executeTestResponder()
[all …]
DDataPathInBandTestCase.java109 mCm = (ConnectivityManager) mContext.getSystemService(Context.CONNECTIVITY_SERVICE); in executeTest()
127 mListener.onTestMsgReceived(mContext.getString(R.string.aware_status_lifecycle_ok)); in executeTest()
154 setFailureReason(mContext.getString(R.string.aware_status_receive_timeout)); in executeTestSubscriber()
158 mListener.onTestMsgReceived(mContext.getString(R.string.aware_status_received)); in executeTestSubscriber()
163 setFailureReason(mContext.getString(R.string.aware_status_receive_failure)); in executeTestSubscriber()
181 mContext.getString(R.string.aware_status_network_requested)); in executeTestSubscriber()
187 setFailureReason(mContext.getString(R.string.aware_status_network_failed)); in executeTestSubscriber()
192 setFailureReason(mContext.getString(R.string.aware_status_network_failed)); in executeTestSubscriber()
198 setFailureReason(mContext.getString(R.string.aware_status_network_failed_leak)); in executeTestSubscriber()
204 mListener.onTestMsgReceived(mContext.getString(R.string.aware_status_network_success)); in executeTestSubscriber()
[all …]
/cts/hostsidetests/appsecurity/test-apps/ApplicationVisibilityCrossUserApp/src/com/android/cts/applicationvisibility/
DApplicationVisibilityCrossUserTest.java44 private Context mContext; field in ApplicationVisibilityCrossUserTest
48 mContext = InstrumentationRegistry.getContext(); in setUp()
54 final PackageManager pm = mContext.getPackageManager(); in testPackageVisibility_currentUser()
56 pm.getInstalledPackagesAsUser(0, mContext.getUserId()); in testPackageVisibility_currentUser()
63 final PackageManager pm = mContext.getPackageManager(); in testPackageVisibility_anyUserCrossUserGrant()
65 pm.getInstalledPackagesAsUser(MATCH_KNOWN_PACKAGES, mContext.getUserId()); in testPackageVisibility_anyUserCrossUserGrant()
72 final PackageManager pm = mContext.getPackageManager(); in testPackageVisibility_anyUserCrossUserNoGrant()
76 pm.getInstalledPackagesAsUser(MATCH_KNOWN_PACKAGES, mContext.getUserId()); in testPackageVisibility_anyUserCrossUserNoGrant()
84 final PackageManager pm = mContext.getPackageManager(); in testPackageVisibility_otherUserGrant()
93 final PackageManager pm = mContext.getPackageManager(); in testPackageVisibility_otherUserNoGrant()
[all …]
/cts/tests/tests/appcomponentfactory/src/android/app/componentfactory/cts/
DAppComponentFactoryTest.java32 private final Context mContext = InstrumentationRegistry.getContext(); field in AppComponentFactoryTest
36 assertTrue(mContext.getApplicationContext() instanceof MyApplication); in testApplication()
41 mContext.startActivity(new Intent() in testActivity()
42 .setComponent(new ComponentName(mContext.getPackageName(), in testActivity()
43 mContext.getPackageName() + ".inject.MyActivity")) in testActivity()
49 mContext.sendBroadcast(new Intent() in testReceiver()
50 .setComponent(new ComponentName(mContext.getPackageName(), in testReceiver()
51 mContext.getPackageName() + ".inject.MyReceiver"))); in testReceiver()
56 mContext.startService(new Intent() in testService()
57 .setComponent(new ComponentName(mContext.getPackageName(), in testService()
[all …]
/cts/tests/pdf/src/android/graphics/pdf/cts/
DPdfRendererTest.java66 private Context mContext; field in PdfRendererTest
70 mContext = InstrumentationRegistry.getTargetContext(); in setup()
81 verifyException(() -> createRenderer(R.raw.testimage, mContext), IOException.class); in constructRendererFromNonPDF()
86 verifyException(() -> createRenderer(PROTECTED_PDF, mContext), SecurityException.class); in constructRendererFromProtectedPDF()
92 PdfRenderer firstRenderer = createRenderer(A4_PORTRAIT, mContext); in rendererRecoversAfterFailure()
94 verifyException(() -> createRenderer(PROTECTED_PDF, mContext), SecurityException.class); in rendererRecoversAfterFailure()
97 PdfRenderer renderer = createRenderer(TWO_PAGES, mContext); in rendererRecoversAfterFailure()
105 PdfRenderer renderer = createRenderer(A4_PORTRAIT, mContext); in useRendererAfterClose()
116 PdfRenderer renderer = createRenderer(A4_PORTRAIT, mContext); in usePageAfterClose()
137 PdfRenderer renderer = createRenderer(A4_PORTRAIT, mContext); in closeWithOpenPage()
[all …]
/cts/tests/tests/telecom/src/android/telecom/cts/
DDefaultDialerOperationsTest.java49 private Context mContext; field in DefaultDialerOperationsTest
60 mContext = getInstrumentation().getContext(); in setUp()
63 if (!TestUtils.shouldTestTelecom(mContext)) { in setUp()
73 mTelecomManager = (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE); in setUp()
74 mPackageManager = mContext.getPackageManager(); in setUp()
92 if (!TestUtils.shouldTestTelecom(mContext)) { in testGetDefaultDialerPackage()
105 if (!TestUtils.shouldTestTelecom(mContext)) { in testActionDialHandling()
116 if (!TestUtils.shouldTestTelecom(mContext)) { in testDialerUI()
130 if (!TestUtils.shouldTestTelecom(mContext)) { in testEmergencyDialerUI()
146 if (!TestUtils.shouldTestTelecom(mContext)) { in testVoicemailReadWritePermissions()
[all …]
/cts/tests/tests/media/src/android/media/cts/
DRingtoneTest.java37 private Context mContext; field in RingtoneTest
49 mContext = getInstrumentation().getContext(); in setUp()
50 mAudioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE); in setUp()
51 mRingtone = RingtoneManager.getRingtone(mContext, Settings.System.DEFAULT_RINGTONE_URI); in setUp()
69 mContext.getPackageName(), getInstrumentation(), true); in setUp()
77 mContext.getPackageName(), getInstrumentation(), false); in setUp()
81 mDefaultRingUri = RingtoneManager.getActualDefaultRingtoneUri(mContext, in setUp()
107 mContext.getPackageName(), getInstrumentation(), true); in tearDown()
113 mContext.getPackageName(), getInstrumentation(), false); in tearDown()
116 RingtoneManager.setActualDefaultRingtoneUri(mContext, RingtoneManager.TYPE_RINGTONE, in tearDown()
[all …]
DRingtoneManagerTest.java49 private Context mContext; field in RingtoneManagerTest
64 mContext = mInstrumentation.getContext(); in setUp()
65 Utils.enableAppOps(mContext.getPackageName(), "android:write_settings", mInstrumentation); in setUp()
67 mAudioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE); in setUp()
70 mDefaultUri = RingtoneManager.getActualDefaultRingtoneUri(mContext, in setUp()
77 mContext.getPackageName(), getInstrumentation(), true); in setUp()
83 mContext.getPackageName(), getInstrumentation(), false); in setUp()
93 mContext.getPackageName(), getInstrumentation(), true); in tearDown()
101 mContext.getPackageName(), getInstrumentation(), false); in tearDown()
104 RingtoneManager.setActualDefaultRingtoneUri(mContext, RingtoneManager.TYPE_RINGTONE, in tearDown()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
DConnectReqTestCase.java47 mReceiverTest = new P2pBroadcastReceiverTest(mContext); in setUp()
97 mReason = mContext.getString(R.string.p2p_discover_peers_error); in connectTest()
103 mReason = mContext.getString(R.string.p2p_target_not_found_error); in connectTest()
109 mReason = mContext.getString(R.string.p2p_target_invalid_role_error); in connectTest()
113 mReason = mContext.getString(R.string.p2p_target_invalid_role_error2); in connectTest()
131 mReason = mContext.getString(R.string.p2p_connect_error); in connectTest()
140 mReason = mContext.getString(R.string.p2p_connection_error); in connectTest()
149 mReason = mContext.getString(R.string.p2p_connection_error); in connectTest()
158 mReason = mContext.getString(R.string.p2p_remove_group_error); in connectTest()
169 mReason = mContext.getString(R.string.p2p_connection_error); in connectTest()
[all …]
/cts/tests/tests/telephony/current/src/android/telephony/cts/
DVisualVoicemailServiceTest.java84 private Context mContext; field in VisualVoicemailServiceTest
96 mContext = getInstrumentation().getContext(); in setUp()
97 if (hasTelephony(mContext)) { in setUp()
101 TelecomManager telecomManager = mContext.getSystemService(TelecomManager.class); in setUp()
106 mTelephonyManager = mContext.getSystemService(TelephonyManager.class) in setUp()
110 PackageManager packageManager = mContext.getPackageManager(); in setUp()
112 new ComponentName(mContext, MockVisualVoicemailService.class), in setUp()
115 new ComponentName(mContext, PermissionlessVisualVoicemailService.class), in setUp()
121 if (hasTelephony(mContext)) { in tearDown()
127 mContext.unregisterReceiver(mSmsReceiver); in tearDown()
[all …]
/cts/tests/tests/text/src/android/text/format/cts/
DDateUtilsTest.java47 private Context mContext; field in DateUtilsTest
51 mContext = InstrumentationRegistry.getTargetContext(); in setup()
58 if (!LocaleUtils.isCurrentLocale(mContext, Locale.US)) { in testGetDayOfWeekString()
79 if (!LocaleUtils.isCurrentLocale(mContext, Locale.US)) { in testGetMonthString()
96 if (!LocaleUtils.isCurrentLocale(mContext, Locale.US)) { in testGetAMPMString()
108 if (!LocaleUtils.isCurrentLocale(mContext, Locale.US)) { in test_getRelativeTimeSpanString()
134 if (!LocaleUtils.isCurrentLocale(mContext, Locale.US)) { in test_getRelativeTimeSpanString_withContext()
144 final CharSequence withPrep = DateUtils.getRelativeTimeSpanString(mContext, today10am, in test_getRelativeTimeSpanString_withContext()
146 final CharSequence noPrep = DateUtils.getRelativeTimeSpanString(mContext, today10am, in test_getRelativeTimeSpanString_withContext()
148 assertEquals(noPrep, DateUtils.getRelativeTimeSpanString(mContext, today10am)); in test_getRelativeTimeSpanString_withContext()
[all …]
/cts/tests/tests/telecom2/src/android/telecom/cts/
DDefaultDialerOperationsNoPermissionsTest.java28 private Context mContext; field in DefaultDialerOperationsNoPermissionsTest
36 mContext = getInstrumentation().getContext(); in setUp()
37 if (!TestUtils.shouldTestTelecom(mContext)) { in setUp()
40 TestUtils.PACKAGE = mContext.getPackageName(); in setUp()
48 mTelecomManager = (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE); in setUp()
62 if (!TestUtils.shouldTestTelecom(mContext)) { in testShowInCallScreenPermissions()
74 if (!TestUtils.shouldTestTelecom(mContext)) { in testGetCallCapableAccountsPermissions()
86 if (!TestUtils.shouldTestTelecom(mContext)) { in testGetDefaultOutgoingPhoneAccount()
98 if (!TestUtils.shouldTestTelecom(mContext)) { in testGetLine1Number()
110 if (!TestUtils.shouldTestTelecom(mContext)) { in testGetVoicemailNumber()
[all …]

12345678910>>...29