Home
last modified time | relevance | path

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

/packages/apps/DeviceDiagnostics/DeviceDiagnosticsLib/src/androidTest/java/com/android/devicediagnostics/
DTestApplication.kt45 val btClient = Mockito.mock(BluetoothClient::class.java) in setupMocks() constant
46 whenever(app.getBluetoothClient()).thenReturn(btClient) in setupMocks()
DMainActivityTest.kt110 val btClient = app.getBluetoothClient() in testEvaluationFlow() constant
128 verify(btClient).start(btCaptor.capture()) in testEvaluationFlow()
154 verify(btClient, times(1)).sendReport(reportCaptor.capture()) in testEvaluationFlow()
/packages/apps/DeviceDiagnostics/DeviceDiagnosticsLib/src/main/java/com/android/devicediagnostics/
DApplicationInterface.kt34 private val btClient = BluetoothClientImpl() constant in com.android.devicediagnostics.ApplicationInterface
50 return btClient in getBluetoothClient()