Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2680)

Unified Diff: device/bluetooth/test/bluetooth_test.cc

Issue 2695573002: Adding BluetoothTestBase::CheckNotifySessionValue() method (Closed)
Patch Set: Should work Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/bluetooth/test/bluetooth_test.h ('k') | device/bluetooth/test/bluetooth_test_mac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/test/bluetooth_test.cc
diff --git a/device/bluetooth/test/bluetooth_test.cc b/device/bluetooth/test/bluetooth_test.cc
index 394227812e79aa41a898edfbc3c156933ffee81c..234b0486400cd33bf8780d08ed3931b86987a2d5 100644
--- a/device/bluetooth/test/bluetooth_test.cc
+++ b/device/bluetooth/test/bluetooth_test.cc
@@ -92,6 +92,30 @@ std::vector<uint8_t> BluetoothTestBase::LastNotifactionValueForCharacteristic(
return std::vector<uint8_t>();
}
+void BluetoothTestBase::ExpectedChangeNotifyValueAttempts(int attempts) {
+ EXPECT_EQ(attempts, gatt_write_descriptor_attempts_);
+ EXPECT_EQ(attempts, gatt_notify_characteristic_attempts_);
+}
+
+void BluetoothTestBase::ExpectedNotifyValue(
+ NotifyValueState expected_value_state) {
+ ASSERT_EQ(2u, last_write_value_.size());
+ switch (expected_value_state) {
+ case NotifyValueState::NONE:
+ EXPECT_EQ(0, last_write_value_[0]);
+ EXPECT_EQ(0, last_write_value_[1]);
+ break;
+ case NotifyValueState::NOTIFY:
+ EXPECT_EQ(1, last_write_value_[0]);
+ EXPECT_EQ(0, last_write_value_[1]);
+ break;
+ case NotifyValueState::INDICATE:
+ EXPECT_EQ(2, last_write_value_[0]);
+ EXPECT_EQ(0, last_write_value_[1]);
+ break;
+ }
+}
+
std::vector<BluetoothLocalGattService*>
BluetoothTestBase::RegisteredGattServices() {
NOTIMPLEMENTED();
« no previous file with comments | « device/bluetooth/test/bluetooth_test.h ('k') | device/bluetooth/test/bluetooth_test_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698