diff options
author | ncteisen <ncteisen@gmail.com> | 2018-10-24 15:27:57 -0700 |
---|---|---|
committer | ncteisen <ncteisen@gmail.com> | 2018-10-24 17:31:30 -0700 |
commit | 693f46841a2d91b35ac3c9268b69f9ca33feee81 (patch) | |
tree | 459bbe3aaf5bc06a6452b2c89ff45df303037215 /test/cpp | |
parent | 0d5db17da6a639068183828dc4ed6e292fc97cc3 (diff) |
Add GetServer to core
Diffstat (limited to 'test/cpp')
-rw-r--r-- | test/cpp/util/channel_trace_proto_helper.cc | 5 | ||||
-rw-r--r-- | test/cpp/util/channel_trace_proto_helper.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/test/cpp/util/channel_trace_proto_helper.cc b/test/cpp/util/channel_trace_proto_helper.cc index 42a436d49b..ff9d887385 100644 --- a/test/cpp/util/channel_trace_proto_helper.cc +++ b/test/cpp/util/channel_trace_proto_helper.cc @@ -82,6 +82,11 @@ void ValidateGetChannelResponseProtoJsonTranslation(char* json_c_str) { json_c_str); } +void ValidateGetServerResponseProtoJsonTranslation(char* json_c_str) { + VaidateProtoJsonTranslation<grpc::channelz::v1::GetServerResponse>( + json_c_str); +} + void ValidateSubchannelProtoJsonTranslation(char* json_c_str) { VaidateProtoJsonTranslation<grpc::channelz::v1::Subchannel>(json_c_str); } diff --git a/test/cpp/util/channel_trace_proto_helper.h b/test/cpp/util/channel_trace_proto_helper.h index 67c363e89b..4f74e02f10 100644 --- a/test/cpp/util/channel_trace_proto_helper.h +++ b/test/cpp/util/channel_trace_proto_helper.h @@ -26,6 +26,7 @@ void ValidateChannelTraceProtoJsonTranslation(char* json_c_str); void ValidateChannelProtoJsonTranslation(char* json_c_str); void ValidateGetTopChannelsResponseProtoJsonTranslation(char* json_c_str); void ValidateGetChannelResponseProtoJsonTranslation(char* json_c_str); +void ValidateGetServerResponseProtoJsonTranslation(char* json_c_str); void ValidateSubchannelProtoJsonTranslation(char* json_c_str); void ValidateServerProtoJsonTranslation(char* json_c_str); void ValidateGetServersResponseProtoJsonTranslation(char* json_c_str); |