aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/client
diff options
context:
space:
mode:
authorGravatar Yang Gao <yangg@google.com>2015-04-23 16:35:24 -0700
committerGravatar Yang Gao <yangg@google.com>2015-04-24 13:09:40 -0700
commitc4b6ffb1b6aa9fb3c5fbf15a5e7e2862cfc4624c (patch)
treed82ed627e961634d64ba5f1001c502c8e4b974e3 /test/cpp/client
parent3afd92ff511f52db3ecf892d9af65053323c89cb (diff)
Add a GrpcLibrary class to wrap grpc_init and grpc_shutdown and convert all the tests to init/shutdown free.
Diffstat (limited to 'test/cpp/client')
-rw-r--r--test/cpp/client/credentials_test.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/cpp/client/credentials_test.cc b/test/cpp/client/credentials_test.cc
index 24251f297b..883f1dca7b 100644
--- a/test/cpp/client/credentials_test.cc
+++ b/test/cpp/client/credentials_test.cc
@@ -56,8 +56,6 @@ TEST_F(CredentialsTest, InvalidServiceAccountCreds) {
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
- grpc_init();
int ret = RUN_ALL_TESTS();
- grpc_shutdown();
return ret;
}