aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/proto/test.proto
diff options
context:
space:
mode:
Diffstat (limited to 'test/proto/test.proto')
-rw-r--r--test/proto/test.proto8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/proto/test.proto b/test/proto/test.proto
index b9483d8437..1214152513 100644
--- a/test/proto/test.proto
+++ b/test/proto/test.proto
@@ -71,3 +71,11 @@ service TestService {
rpc HalfDuplexCall(stream StreamingOutputCallRequest)
returns (stream StreamingOutputCallResponse);
}
+
+
+// A simple service NOT implemented at servers so clients can test for
+// that case.
+service UnimplementedService {
+ // A call that no server should implement
+ rpc UnimplementedCall(grpc.testing.Empty) returns(grpc.testing.Empty);
+}