aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Noah Eisen <ncteisen@gmail.com>2016-09-28 16:41:36 -0700
committerGravatar GitHub <noreply@github.com>2016-09-28 16:41:36 -0700
commit2e9661c67176d0bf8eca8b1405ff78b9aa6efb42 (patch)
tree46a5424f64538af996f22f2ef9a8ce39fedb18b5 /doc
parentb97f867b390193daf18988958183143726602727 (diff)
Update interop-test-descriptions.md
Diffstat (limited to 'doc')
-rw-r--r--doc/interop-test-descriptions.md24
1 files changed, 22 insertions, 2 deletions
diff --git a/doc/interop-test-descriptions.md b/doc/interop-test-descriptions.md
index 1e04966380..d9799c66c0 100644
--- a/doc/interop-test-descriptions.md
+++ b/doc/interop-test-descriptions.md
@@ -750,9 +750,29 @@ Client asserts:
### unimplemented_method
-Status: Ready for implementation. Blocking beta.
+This test verifies that calling an unimplemented RPC method returns the
+UNIMPLEMENTED status code
-This test verifies calling unimplemented RPC method returns the UNIMPLEMENTED status code.
+Server features:
+N/A
+
+Procedure:
+* Client calls `grpc.testing.TestService/UnimplementedMethod` with an empty
+ request (defined as `grpc.testing.Empty`):
+
+ ```
+ {
+ }
+ ```
+
+Client asserts:
+* received status code is 12 (UNIMPLEMENTED)
+* received status message is empty or null/unset
+
+### unimplemented_service
+
+This test verifies calling an unimplemented server returns the UNIMPLEMENTED
+status code.
Server features:
N/A