Home
last modified time | relevance | path

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

/aosp12/packages/apps/Launcher3/tests/src/com/android/launcher3/model/
H A DDefaultLayoutProviderTest.java19 import static com.android.launcher3.util.LauncherModelHelper.TEST_ACTIVITY;
67 .putApp(TEST_PACKAGE, TEST_ACTIVITY)); in testCustomProfileLoaded_with_icon_on_hotseat()
79 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_folder()
80 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_folder()
81 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_folder()
94 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_folder_custom_title()
95 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_folder_custom_title()
96 .addApp(TEST_PACKAGE, TEST_ACTIVITY) in testCustomProfileLoaded_with_folder_custom_title()
H A DLoaderCursorTest.java38 import static com.android.launcher3.util.LauncherModelHelper.TEST_ACTIVITY;
128 ComponentName cn = new ComponentName(getContext(), TEST_ACTIVITY); in getAppShortcutInfo_dontAllowMissing_validComponent()
/aosp12/frameworks/base/apct-tests/perftests/packagemanager/src/android/os/
H A DPackageManagerPerfTest.java46 private static final ComponentName TEST_ACTIVITY = field in PackageManagerPerfTest
73 final String packageName = TEST_ACTIVITY.getPackageName(); in testCheckPermissionExists()
92 final String packageName = TEST_ACTIVITY.getPackageName(); in testCheckPermissionDoesntExist()
132 pm.getPackageInfo(TEST_ACTIVITY.getPackageName(), 0); in testGetPackageInfo()
150 pm.getApplicationInfo(TEST_ACTIVITY.getPackageName(), 0); in testGetApplicationInfo()
168 pm.getActivityInfo(TEST_ACTIVITY, 0); in testGetActivityInfo()
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/pm/parsing/
H A DPackageParsingDeferErrorTest.kt45 private const val TEST_ACTIVITY =
76 assertThat(first.name).isEqualTo(TEST_ACTIVITY)
97 assertThat(first.name).isEqualTo(TEST_ACTIVITY)
/aosp12/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/provisioning/
H A DProvisioningActivityTest.java118 private static final ComponentName TEST_ACTIVITY = new ComponentName(TEST_PACKAGE, field in ProvisioningActivityTest
363 activityInfo.packageName = TEST_ACTIVITY.getPackageName(); in testSuccess_Nfc()
364 activityInfo.name = TEST_ACTIVITY.getClassName(); in testSuccess_Nfc()
390 intended(allOf(hasComponent(TEST_ACTIVITY), hasAction(ACTION_STATE_USER_SETUP_COMPLETE))); in testSuccess_Nfc()
/aosp12/frameworks/base/core/tests/coretests/src/com/android/internal/os/
H A DBstatsCpuTimesValidationTest.java86 private static final String TEST_ACTIVITY = TEST_PKG + ".TestActivity"; field in BstatsCpuTimesValidationTest
834 .setComponent(new ComponentName(TEST_PKG, TEST_ACTIVITY)); in startActivity()
/aosp12/packages/apps/Launcher3/tests/src/com/android/launcher3/util/
H A DLauncherModelHelper.java102 public static final String TEST_ACTIVITY = "com.android.launcher3.tests.Activity2"; field in LauncherModelHelper