Home
last modified time | relevance | path

Searched refs:mMockApplicationInfo (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/applications/
H A DInstalledAppCountItemManagerTest.java50 private ApplicationInfo mMockApplicationInfo; field in InstalledAppCountItemManagerTest
63 mMockApplicationInfo.flags = ApplicationInfo.FLAG_UPDATED_SYSTEM_APP; in isUpdatedSystemApp_isCounted()
65 assertThat(mInstalledAppCountItemManager.shouldCountApp(mMockApplicationInfo)).isTrue(); in isUpdatedSystemApp_isCounted()
70 mMockApplicationInfo.flags = ApplicationInfo.FLAG_SYSTEM; in isSystemApp_userCanOpen_isCounted()
76 assertThat(mInstalledAppCountItemManager.shouldCountApp(mMockApplicationInfo)).isTrue(); in isSystemApp_userCanOpen_isCounted()
81 mMockApplicationInfo.flags = ApplicationInfo.FLAG_SYSTEM; in isSystemApp_userCannotOpen_isNotCounted()
86 assertThat(mInstalledAppCountItemManager.shouldCountApp(mMockApplicationInfo)).isFalse(); in isSystemApp_userCannotOpen_isNotCounted()
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DTelephonyPermissionsTest.java83 private ApplicationInfo mMockApplicationInfo; field in TelephonyPermissionsTest
334 mMockApplicationInfo.targetSdkVersion = Build.VERSION_CODES.P; in testCheckReadDeviceIdentifiers_hasReadPhoneStateTargetPreQ()
573 mMockApplicationInfo.targetSdkVersion = Build.VERSION_CODES.Q; in setupMocksForDeviceIdentifiersErrorPath()
576 .thenReturn(mMockApplicationInfo); in setupMocksForDeviceIdentifiersErrorPath()
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
H A DAccessibilitySecurityPolicyTest.java154 private ApplicationInfo mMockApplicationInfo; field in AccessibilitySecurityPolicyTest
181 mMockServiceInfo.applicationInfo = mMockApplicationInfo; in setUp()
649 when(mMockApplicationInfo.isSystemApp()).thenReturn(true); in onBoundServicesChanged_bindSystemA11yToolService_noUIControllerAction()
672 when(mMockApplicationInfo.isSystemApp()).thenReturn(false); in onBoundServicesChanged_bindAllowedSourceA11yToolService_noUIControllerAction()
/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/
H A DAdapterServiceTest.java87 private @Mock ApplicationInfo mMockApplicationInfo; field in AdapterServiceTest
160 when(mMockContext.getApplicationInfo()).thenReturn(mMockApplicationInfo); in setUp()
341 when(mockContext.getApplicationInfo()).thenReturn(mMockApplicationInfo); in testEnableDisableOnlyGatt()