Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / device / bluetooth / test / mock_bluetooth_device.cc
index 5235d5b..e8130da 100644 (file)
@@ -26,6 +26,12 @@ MockBluetoothDevice::MockBluetoothDevice(MockBluetoothAdapter* adapter,
       .WillByDefault(testing::Return(address_));
   ON_CALL(*this, GetDeviceType())
       .WillByDefault(testing::Return(DEVICE_UNKNOWN));
+  ON_CALL(*this, GetRSSI())
+      .WillByDefault(testing::Return(kUnknownPower));
+  ON_CALL(*this, GetCurrentHostTransmitPower())
+      .WillByDefault(testing::Return(kUnknownPower));
+  ON_CALL(*this, GetMaximumHostTransmitPower())
+      .WillByDefault(testing::Return(kUnknownPower));
   ON_CALL(*this, GetVendorIDSource())
       .WillByDefault(testing::Return(VENDOR_ID_UNKNOWN));
   ON_CALL(*this, GetVendorID())