Home
last modified time | relevance | path

Searched refs:mInstallSourceInfo (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/
H A DAppStoreUtilTest.java53 private InstallSourceInfo mInstallSourceInfo; field in AppStoreUtilTest
62 when(mPackageManager.getInstallSourceInfo(anyString())).thenReturn(mInstallSourceInfo); in setUp()
63 when(mInstallSourceInfo.getInstallingPackageName()).thenReturn(INSTALLING_PACKAGE_NAME); in setUp()
64 when(mInstallSourceInfo.getInitiatingPackageName()).thenReturn(INITIATING_PACKAGE_NAME); in setUp()
65 when(mInstallSourceInfo.getOriginatingPackageName()).thenReturn(ORIGINATING_PACKAGE_NAME); in setUp()
85 when(mInstallSourceInfo.getInitiatingPackageName()).thenReturn(null); in getInstallerPackageName_noInitiating_shouldReturnInstalling()
92 when(mInstallSourceInfo.getOriginatingPackageName()).thenReturn(null); in getInstallerPackageName_noOriginating_shouldReturnInstalling()
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/appinfo/
H A DAppInstallerInfoPreferenceControllerTest.java64 private InstallSourceInfo mInstallSourceInfo; field in AppInstallerInfoPreferenceControllerTest
80 when(mPackageManager.getInstallSourceInfo(anyString())).thenReturn(mInstallSourceInfo); in setUp()
81 when(mInstallSourceInfo.getInstallingPackageName()).thenReturn(installerPackage); in setUp()