Home
last modified time | relevance | path

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

/cts/tests/tests/content/src/android/content/cts/
DIntentTest.java53 private static final String TEST_ACTION = "android.content.IntentTest_test"; field in IntentTest
83 intent.setAction(TEST_ACTION); in testConstructor()
87 assertEquals(TEST_ACTION, mIntent.getAction()); in testConstructor()
89 mIntent = new Intent(TEST_ACTION); in testConstructor()
91 assertEquals(TEST_ACTION, mIntent.getAction()); in testConstructor()
93 mIntent = new Intent(TEST_ACTION, TEST_URI); in testConstructor()
95 assertEquals(TEST_ACTION, mIntent.getAction()); in testConstructor()
102 mIntent = new Intent(TEST_ACTION, TEST_URI, mContext, MockActivity.class); in testConstructor()
104 assertEquals(TEST_ACTION, mIntent.getAction()); in testConstructor()
124 mIntent.setAction(TEST_ACTION); in testReadFromParcel()
[all …]
/cts/tests/tests/media/src/android/media/cts/
DMediaSessionTest.java54 private static final long TEST_ACTION = 55L; field in MediaSessionTest
160 PlaybackState state = new PlaybackState.Builder().setActions(TEST_ACTION).build(); in testConfigureSession()
169 assertEquals(TEST_ACTION, stateOut.getActions()); in testConfigureSession()
173 assertEquals(TEST_ACTION, stateOut.getActions()); in testConfigureSession()
/cts/hostsidetests/appsecurity/test-apps/EncryptionApp/src/com/android/cts/encryptionapp/
DEncryptionAppTest.java51 private static final String TEST_ACTION = "com.android.cts.encryptionapp.TEST"; field in EncryptionAppTest
245 final Intent intent = new Intent(TEST_ACTION); in assertQuery()