aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/codegen
diff options
context:
space:
mode:
authorGravatar James Eady <jmeady@google.com>2017-05-02 10:45:34 -0400
committerGravatar James Eady <jmeady@google.com>2017-05-02 10:45:34 -0400
commit3b26451025118b1f2764dcc618cb3a5fd8abdd4b (patch)
tree5d9e6ae8c142f45f914cc828d21c01949dacffd4 /test/cpp/codegen
parent305dcf3d32bed0614325ead76f121702768ce874 (diff)
Add static method to generated code to return fully qualified protobuf service name.
Diffstat (limited to 'test/cpp/codegen')
-rw-r--r--test/cpp/codegen/compiler_test_golden6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/cpp/codegen/compiler_test_golden b/test/cpp/codegen/compiler_test_golden
index 8e3ae32a49..eb12d371ea 100644
--- a/test/cpp/codegen/compiler_test_golden
+++ b/test/cpp/codegen/compiler_test_golden
@@ -69,6 +69,9 @@ namespace testing {
// ServiceA leading comment 1
class ServiceA final {
public:
+ static constexpr char const* service_full_name() {
+ return "grpc.testing.ServiceA";
+ }
class StubInterface {
public:
virtual ~StubInterface() {}
@@ -373,6 +376,9 @@ class ServiceA final {
// ServiceB leading comment 1
class ServiceB final {
public:
+ static constexpr char const* service_full_name() {
+ return "grpc.testing.ServiceB";
+ }
class StubInterface {
public:
virtual ~StubInterface() {}