Searched refs:mCachedDevice (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
H A DCachedBluetoothDeviceTest.java65 private CachedBluetoothDevice mCachedDevice; field in class:CachedBluetoothDeviceTest
78 mCachedDevice = spy(
80 doAnswer((invocation) -> mBatteryLevel).when(mCachedDevice).getBatteryLevel();
96 mCachedDevice.onProfileStateChanged(mHidProfile, BluetoothProfile.STATE_CONNECTED);
97 assertThat(mCachedDevice.getConnectionSummary()).isEqualTo(mContext.getString(
101 mCachedDevice.onProfileStateChanged(mHidProfile, BluetoothProfile.STATE_DISCONNECTED);
102 assertThat(mCachedDevice.getConnectionSummary()).isNull();
107 mCachedDevice.onProfileStateChanged(mHidProfile, BluetoothProfile.STATE_CONNECTED);
108 assertThat(mCachedDevice.getConnectionSummary()).isEqualTo(mContext.getString(
113 mCachedDevice
[all...]

Completed in 72 milliseconds