Home
last modified time | relevance | path

Searched refs:TEST_ACTIVITY (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Launcher3/tests/src/com/android/launcher3/model/
DDefaultLayoutProviderTest.java19 import static com.android.launcher3.util.LauncherModelHelper.TEST_ACTIVITY;
69 .putApp(TEST_PACKAGE, TEST_ACTIVITY)); in testCustomProfileLoaded_with_icon_on_hotseat()
81 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_folder()
82 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_folder()
83 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_folder()
96 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_folder_custom_title()
97 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_folder_custom_title()
98 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_folder_custom_title()
149 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_shortcut_in_folder()
150 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_shortcut_in_folder()
DPackageInstallStateChangedTaskTest.java4 import static com.android.launcher3.util.LauncherModelHelper.TEST_ACTIVITY;
48 .atWorkspace(0, 0, 1).putApp(TEST_PACKAGE, TEST_ACTIVITY) // 1 in setup()
52 .atWorkspace(0, 0, 4).putApp(PENDING_APP_1, TEST_ACTIVITY) // 4 in setup()
57 .atWorkspace(0, 0, 8).putApp(PENDING_APP_2, TEST_ACTIVITY) // 8 in setup()
DCacheDataUpdatedTaskTest.java6 import static com.android.launcher3.util.LauncherModelHelper.TEST_ACTIVITY;
69 .addApp(TEST_PACKAGE, TEST_ACTIVITY) // 2 in setup()
74 .addApp(PENDING_APP_1, TEST_ACTIVITY) // 5 in setup()
79 .addApp(PENDING_APP_2, TEST_ACTIVITY) // 8 in setup()
DLoaderCursorTest.java43 import static com.android.launcher3.util.LauncherModelHelper.TEST_ACTIVITY;
135 ComponentName cn = new ComponentName(getContext(), TEST_ACTIVITY); in getAppShortcutInfo_dontAllowMissing_validComponent()
DFolderIconLoadTest.kt43 TEST_ACTIVITY,
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/model/
DAbstractWorkspaceModelTest.kt30 import com.android.launcher3.util.LauncherModelHelper.TEST_ACTIVITY in <lambda>()
110 mLayoutBuilder.atWorkspace(x, y, screenId).putApp(TEST_PACKAGE, TEST_ACTIVITY) in <lambda>()
118 intent = AppInfo.makeLaunchIntent(ComponentName(TEST_PACKAGE, TEST_ACTIVITY)) in <lambda>()
/packages/modules/DeviceLock/DeviceLockController/tests/robolectric/src/com/android/devicelockcontroller/policy/
DLockTaskModePolicyHandlerTest.java86 private static final String TEST_ACTIVITY = "TestActivity"; field in LockTaskModePolicyHandlerTest
222 ComponentName dialerComponent = new ComponentName(DIALER_PACKAGE, TEST_ACTIVITY); in setupDefaultSystemPackages()
240 ComponentName settingsComponent = new ComponentName(SETTINGS_PACKAGE, TEST_ACTIVITY); in setupDefaultSystemPackages()
260 TEST_ACTIVITY); in setupDefaultSystemPackages()
296 new ComponentName(CELL_BROADCAST_RECEIVER_PACKAGE, TEST_ACTIVITY); in setupDefaultSystemPackages()
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/provisioning/
DProvisioningActivityTest.java117 private static final ComponentName TEST_ACTIVITY = new ComponentName(TEST_PACKAGE, field in ProvisioningActivityTest
359 activityInfo.packageName = TEST_ACTIVITY.getPackageName(); in testSuccess_Nfc()
360 activityInfo.name = TEST_ACTIVITY.getClassName(); in testSuccess_Nfc()
386 intended(allOf(hasComponent(TEST_ACTIVITY), hasAction(ACTION_STATE_USER_SETUP_COMPLETE))); in testSuccess_Nfc()
/packages/apps/Launcher3/tests/src/com/android/launcher3/folder/
DPreviewItemManagerTest.kt68 .addApp(LauncherModelHelper.TEST_PACKAGE, LauncherModelHelper.TEST_ACTIVITY) in setup()
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/util/
DLauncherModelHelper.java73 public static final String TEST_ACTIVITY = "com.android.launcher3.tests.Activity2"; field in LauncherModelHelper