Home
last modified time | relevance | path

Searched refs:getAidMatchingSupport (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Nfc/tests/unit/src/com/android/nfc/cardemulation/
DAidRoutingManagerTest.java127 when(mRoutingOptionManager.getAidMatchingSupport()).thenReturn(AID_MATCHING_EXACT_OR_PREFIX); in testSupportsAidPrefixRouting_ReturnsTrue()
137 when(mRoutingOptionManager.getAidMatchingSupport()).thenReturn(AID_MATCHING_EXACT_ONLY); in testSupportsAidPrefixRouting_ReturnsFalse()
147 when(mRoutingOptionManager.getAidMatchingSupport()) in testSupportsAidSubsetRouting_ReturnsTrue()
158 when(mRoutingOptionManager.getAidMatchingSupport()).thenReturn(AID_MATCHING_EXACT_OR_PREFIX); in testSupportsAidSubsetRouting_ReturnsFalse()
217 when(mRoutingOptionManager.getAidMatchingSupport()).thenReturn(AID_MATCHING_PREFIX_ONLY); in testConfigureRoutingTestCase1_CommitsCache()
275 when(mRoutingOptionManager.getAidMatchingSupport()).thenReturn(AID_MATCHING_PREFIX_ONLY); in testConfigureRoutingTestCase2_WritesError()
319 when(mRoutingOptionManager.getAidMatchingSupport()).thenReturn(AID_MATCHING_EXACT_ONLY); in testConfigureRoutingTestCase3_DoNothing()
371 when(mRoutingOptionManager.getAidMatchingSupport()).thenReturn(AID_MATCHING_EXACT_ONLY); in testConfigureRoutingTestCase4_CommitsCache()
411 when(mRoutingOptionManager.getAidMatchingSupport()).thenReturn(AID_MATCHING_EXACT_OR_PREFIX); in testConfigureRoutingTestCase5_CommitsCache()
473 when(mRoutingOptionManager.getAidMatchingSupport()) in testConfigureRoutingTestCase6_CommitsCache()
[all …]
DRoutingOptionManagerTest.java167 int aidMatchingSupport = manager.getAidMatchingSupport(); in testGetters()
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DRoutingOptionManager.java136 public int getAidMatchingSupport() { in getAidMatchingSupport() method in RoutingOptionManager
DAidRoutingManager.java106 mAidMatchingSupport = mRoutingOptionManager.getAidMatchingSupport(); in AidRoutingManager()