Searched refs:testKey (Results 1 – 4 of 4) sorted by relevance
215 final String testKey = "test_key"; in testBuilder_setConnectionHints_withFrameworkParcelable() local218 connectionHints.putParcelable(testKey, frameworkParcelable); in testBuilder_setConnectionHints_withFrameworkParcelable()226 assertTrue(connectionHintsOut.containsKey(testKey)); in testBuilder_setConnectionHints_withFrameworkParcelable()227 assertEquals(frameworkParcelable, connectionHintsOut.getParcelable(testKey)); in testBuilder_setConnectionHints_withFrameworkParcelable()235 final String testKey = "test_key"; in testBuilder_setConnectionHints_withCustomParcelable() local240 connectionHints.putParcelable(testKey, customParcelable); in testBuilder_setConnectionHints_withCustomParcelable()
537 final String testKey = "test_key"; in testSessionInfoWithFrameworkParcelable() local541 sessionInfo.putParcelable(testKey, frameworkParcelable); in testSessionInfoWithFrameworkParcelable()548 assertTrue(sessionInfoOut.containsKey(testKey)); in testSessionInfoWithFrameworkParcelable()549 assertEquals(frameworkParcelable, sessionInfoOut.getParcelable(testKey)); in testSessionInfoWithFrameworkParcelable()559 final String testKey = "test_key"; in testSessionInfoWithCustomParcelable() local564 sessionInfo.putParcelable(testKey, customParcelable); in testSessionInfoWithCustomParcelable()
175 final String testKey = "test_key"; in testBuilder_setExtras_withFrameworkParcelable() local180 extras.putParcelable(testKey, frameworkParcelable); in testBuilder_setExtras_withFrameworkParcelable()187 assertTrue(extrasOut.containsKey(testKey)); in testBuilder_setExtras_withFrameworkParcelable()188 assertEquals(frameworkParcelable, extrasOut.getParcelable(testKey)); in testBuilder_setExtras_withFrameworkParcelable()194 final String testKey = "test_key"; in testBuilder_setExtras_withCustomParcelable() local198 extras.putParcelable(testKey, customParcelable); in testBuilder_setExtras_withCustomParcelable()
75 testKey(KeyEvent.KEYCODE_HOME); in testKeyCodeHome()120 private void testKey(int keyCode) { in testKey() method in KeyEventInterceptTest