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.java51 private static final String TEST_ACTION = "android.content.IntentTest_test"; field in IntentTest
81 intent.setAction(TEST_ACTION); in testConstructor()
85 assertEquals(TEST_ACTION, mIntent.getAction()); in testConstructor()
87 mIntent = new Intent(TEST_ACTION); in testConstructor()
89 assertEquals(TEST_ACTION, mIntent.getAction()); in testConstructor()
91 mIntent = new Intent(TEST_ACTION, TEST_URI); in testConstructor()
93 assertEquals(TEST_ACTION, mIntent.getAction()); in testConstructor()
100 mIntent = new Intent(TEST_ACTION, TEST_URI, mContext, MockActivity.class); in testConstructor()
102 assertEquals(TEST_ACTION, mIntent.getAction()); in testConstructor()
122 mIntent.setAction(TEST_ACTION); in testReadFromParcel()
[all …]
/cts/tests/tests/media/src/android/media/cts/
DMediaSessionTest.java53 private static final long TEST_ACTION = 55L; field in MediaSessionTest
154 PlaybackState state = new PlaybackState.Builder().setActions(TEST_ACTION).build(); in testConfigureSession()
161 assertEquals(TEST_ACTION, stateOut.getActions()); in testConfigureSession()
165 assertEquals(TEST_ACTION, stateOut.getActions()); in testConfigureSession()
/cts/hostsidetests/appsecurity/test-apps/EncryptionApp/src/com/android/cts/encryptionapp/
DEncryptionAppTest.java54 private static final String TEST_ACTION = "com.android.cts.encryptionapp.TEST"; field in EncryptionAppTest
306 final Intent intent = new Intent(TEST_ACTION); in assertQuery()