Home
last modified time | relevance | path

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

/packages/apps/Launcher3/tests/src/com/android/launcher3/ui/workspace/
DTaplTwoPanelWorkspaceTest.java22 import static com.android.launcher3.util.TestConstants.AppNames.STORE_APP_NAME;
87 assertItemsOnPage(launcher, 0, STORE_APP_NAME, MAPS_APP_NAME); in setUp()
109 assertItemsOnPage(launcher, 0, MAPS_APP_NAME, STORE_APP_NAME); in testDragIconToRightPanel()
129 assertItemsOnPage(launcher, 0, STORE_APP_NAME); in testSinglePageDragIconWhenMultiplePageScrollingIsPossible()
139 assertItemsOnPage(launcher, 0, STORE_APP_NAME); in testSinglePageDragIconWhenMultiplePageScrollingIsPossible()
151 assertItemsOnPage(launcher, 0, STORE_APP_NAME); in testSinglePageDragIconWhenMultiplePageScrollingIsPossible()
165 assertItemsOnPage(launcher, 0, CHROME_APP_NAME, STORE_APP_NAME); in testSinglePageDragIconWhenMultiplePageScrollingIsPossible()
179 assertItemsOnPage(launcher, 0, STORE_APP_NAME); in testDragIconToPage2()
196 assertItemsOnPage(launcher, 0, STORE_APP_NAME, MAPS_APP_NAME); in testDragIconToPage3()
216 assertItemsOnPage(launcher, 0, STORE_APP_NAME); in testMultiplePageDragIcon()
[all …]
/packages/apps/Launcher3/tests/src/com/android/launcher3/dragging/
DTaplDragTest.java22 import static com.android.launcher3.util.TestConstants.AppNames.STORE_APP_NAME;
71 final HomeAppIcon playStoreIcon = createShortcutIfNotExist(STORE_APP_NAME, 0, 1); in testDragToFolder()
76 folder.getAppIcon(STORE_APP_NAME); in testDragToFolder()
80 workspace.verifyWorkspaceAppIconIsGone(STORE_APP_NAME + " should be moved to a folder.", in testDragToFolder()
81 STORE_APP_NAME); in testDragToFolder()
101 final HomeAppIcon playStoreIcon = createShortcutIfNotExist(STORE_APP_NAME, 0, 1); in testDragOutOfFolder()
105 folder.getAppIcon(STORE_APP_NAME).internalDragToWorkspace(false, false); in testDragOutOfFolder()
106 assertNotNull(mLauncher.getWorkspace().tryGetWorkspaceAppIcon(STORE_APP_NAME)); in testDragOutOfFolder()
DTaplUninstallRemoveTest.java23 import static com.android.launcher3.util.TestConstants.AppNames.STORE_APP_NAME;
64 for (String appName : new String[]{GMAIL_APP_NAME, STORE_APP_NAME, TEST_APP_NAME}) { in testDeleteFromWorkspace()
146 final String[] appNameCandidates = {DUMMY_APP_NAME, MAPS_APP_NAME, STORE_APP_NAME}; in uninstallWorkspaceIcon()
/packages/apps/Launcher3/tests/src/com/android/launcher3/util/
DTestConstants.java24 public static final String STORE_APP_NAME = "Play Store"; field in TestConstants.AppNames