Home | History | Annotate | Download | only in Grpc.IntegrationTesting

Lines Matching refs:gRPC

3 // Copyright 2015-2016 gRPC authors.
31 using Grpc.Auth;
32 using Grpc.Core;
33 using Grpc.Core.Logging;
34 using Grpc.Core.Utils;
35 using Grpc.Testing;
39 namespace Grpc.IntegrationTesting
500 Assert.AreEqual("test_initial_metadata_value", responseHeaders.First((entry) => entry.Key == "x-grpc-test-echo-initial").Value);
501 CollectionAssert.AreEqual(new byte[] { 0xab, 0xab, 0xab }, responseTrailers.First((entry) => entry.Key == "x-grpc-test-echo-trailing-bin").ValueBytes);
521 Assert.AreEqual("test_initial_metadata_value", responseHeaders.First((entry) => entry.Key == "x-grpc-test-echo-initial").Value);
522 CollectionAssert.AreEqual(new byte[] { 0xab, 0xab, 0xab }, responseTrailers.First((entry) => entry.Key == "x-grpc-test-echo-trailing-bin").ValueBytes);
710 {"x-grpc-test-echo-initial", "test_initial_metadata_value"},
711 {"x-grpc-test-echo-trailing-bin", new byte[] {0xab, 0xab, 0xab}}