Home
last modified time | relevance | path

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

/cts/tests/tests/content/src/android/content/cts/
DIntentTest.java54 private static final String TEST_ACTION = "android.content.IntentTest_test"; field in IntentTest
86 intent.setAction(TEST_ACTION); in testConstructor()
90 assertEquals(TEST_ACTION, mIntent.getAction()); in testConstructor()
92 mIntent = new Intent(TEST_ACTION); in testConstructor()
94 assertEquals(TEST_ACTION, mIntent.getAction()); in testConstructor()
96 mIntent = new Intent(TEST_ACTION, TEST_URI); in testConstructor()
98 assertEquals(TEST_ACTION, mIntent.getAction()); in testConstructor()
105 mIntent = new Intent(TEST_ACTION, TEST_URI, mContext, MockActivity.class); in testConstructor()
107 assertEquals(TEST_ACTION, mIntent.getAction()); in testConstructor()
127 mIntent.setAction(TEST_ACTION); in testReadFromParcel()
[all …]
/cts/hostsidetests/backup/SharedPreferencesRestoreApp/src/android/cts/backup/sharedprefrestoreapp/
DSharedPrefsRestoreTestActivity.java36 static final String TEST_ACTION = "android.backup.cts.backuprestore.TEST"; field in SharedPrefsRestoreTestActivity
79 } else if (TEST_ACTION.equals(action)) { in processLaunchCommand()
/cts/tests/apppredictionservice/src/android/apppredictionservice/cts/
DAppPredictionServiceTest.java69 private static final int TEST_ACTION = 2; field in AppPredictionServiceTest
175 AppTargetEvent event = new AppTargetEvent.Builder(target, TEST_ACTION) in testAppTargetEvent()
/cts/hostsidetests/backup/KeyValueApp/src/android/cts/backup/keyvaluerestoreapp/
DKeyValueBackupRestoreTest.java113 private static final String TEST_ACTION = "android.backup.cts.backuprestore.TEST"; field in KeyValueBackupRestoreTest
219 mContext.startActivity(mSharedPrefActivityIntent.setAction(TEST_ACTION)); in checkSharedPrefActivity()
/cts/hostsidetests/appsecurity/test-apps/EncryptionApp/src/com/android/cts/encryptionapp/
DEncryptionAppTest.java67 private static final String TEST_ACTION = "com.android.cts.encryptionapp.TEST"; field in EncryptionAppTest
366 final Intent intent = new Intent(TEST_ACTION); in assertQuery()
/cts/tests/tests/media/src/android/media/cts/
DMediaSessionTest.java78 private static final long TEST_ACTION = 55L; field in MediaSessionTest
217 PlaybackState state = new PlaybackState.Builder().setActions(TEST_ACTION).build(); in testConfigureSession()
226 assertEquals(TEST_ACTION, stateOut.getActions()); in testConfigureSession()
230 assertEquals(TEST_ACTION, stateOut.getActions()); in testConfigureSession()
/cts/tests/smartspace/src/android/smartspace/cts/
DSmartspaceManagerTest.java80 private static final int TEST_ACTION = 2; field in SmartspaceManagerTest