Home
last modified time | relevance | path

Searched refs:nfcService (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Nfc/tests/unit/src/com/android/nfc/
DAidRoutingManagerTest.java123 NfcService nfcService = mock(NfcService.class); in testConfigureRoutingErrorOccurred()
124 when(NfcService.getInstance()).thenReturn(nfcService); in testConfigureRoutingErrorOccurred()
125 when(nfcService.getNciVersion()).thenReturn(NfcService.NCI_VERSION_2_0); in testConfigureRoutingErrorOccurred()
140 NfcService nfcService = mock(NfcService.class); in testConfigureRouting()
141 when(NfcService.getInstance()).thenReturn(nfcService); in testConfigureRouting()
142 when(nfcService.getNciVersion()).thenReturn(NfcService.NCI_VERSION_2_0); in testConfigureRouting()
/packages/apps/Nfc/src/com/android/nfc/
DNfcShellCommand.java60 NfcShellCommand(NfcService nfcService, Context context) { in NfcShellCommand() argument
61 mNfcService = nfcService; in NfcShellCommand()