示例#1
0
        public static void RunEmptyUnary(TestServiceGrpc.ITestServiceClient client)
        {
            Console.WriteLine("running empty_unary");
            var response = client.EmptyCall(Empty.DefaultInstance);

            Assert.IsNotNull(response);
            Console.WriteLine("Passed!");
        }
示例#2
0
 // This is not an official interop test, but it's useful.
 public static void RunBenchmarkEmptyUnary(TestServiceGrpc.ITestServiceClient client)
 {
     BenchmarkUtil.RunBenchmark(10000, 10000,
                                () => { client.EmptyCall(Empty.DefaultInstance); });
 }