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

Unified Diff: chromeos/components/tether/message_wrapper_unittest.cc

Issue 2913363002: [CrOS Tether] Add KeepAliveTickleResponse messages to both the proto file and MessageWrapper. (Closed)
Patch Set: Rebased. Created 3 years, 7 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 | « chromeos/components/tether/message_wrapper.cc ('k') | chromeos/components/tether/proto/tether.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/components/tether/message_wrapper_unittest.cc
diff --git a/chromeos/components/tether/message_wrapper_unittest.cc b/chromeos/components/tether/message_wrapper_unittest.cc
index 9e5ea88acf9329d423692da86e9c8dd446614258..78a7e248a301d126473987240db4e389b722f14f 100644
--- a/chromeos/components/tether/message_wrapper_unittest.cc
+++ b/chromeos/components/tether/message_wrapper_unittest.cc
@@ -103,6 +103,14 @@ TEST_F(MessageWrapperTest, TestToAndFromRawMessage_KeepAliveTickle) {
VerifyProtoConversion(&tickle, wrapper, MessageType::KEEP_ALIVE_TICKLE);
}
+TEST_F(MessageWrapperTest, TestToAndFromRawMessage_KeepAliveTickleResponse) {
+ KeepAliveTickleResponse response;
+
+ MessageWrapper wrapper(response);
+ VerifyProtoConversion(&response, wrapper,
+ MessageType::KEEP_ALIVE_TICKLE_RESPONSE);
+}
+
TEST_F(MessageWrapperTest, TestToAndFromRawMessage_TetherAvailabilityRequest) {
TetherAvailabilityRequest request;
« no previous file with comments | « chromeos/components/tether/message_wrapper.cc ('k') | chromeos/components/tether/proto/tether.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698