aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/proto/grpc
diff options
context:
space:
mode:
authorGravatar yang-g <yangg@google.com>2016-05-03 16:04:54 -0700
committerGravatar yang-g <yangg@google.com>2016-05-03 16:04:54 -0700
commit1717bff3f47939b83fece86075fb9b9aa178ebb3 (patch)
treec48f49122acefd45973c65135aa6ea9817ac82df /src/proto/grpc
parent5a779537f1569d369980d20ebf6277f0bc2271ba (diff)
add a dummy service with no rpc to test codegen coverage
Diffstat (limited to 'src/proto/grpc')
-rw-r--r--src/proto/grpc/testing/echo.proto4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/proto/grpc/testing/echo.proto b/src/proto/grpc/testing/echo.proto
index 0eef53a92a..c596aabfcc 100644
--- a/src/proto/grpc/testing/echo.proto
+++ b/src/proto/grpc/testing/echo.proto
@@ -45,3 +45,7 @@ service EchoTestService {
service UnimplementedService {
rpc Unimplemented(EchoRequest) returns (EchoResponse);
}
+
+// A service without any rpc defined to test coverage.
+service NoRpcService {
+}