Esempio n. 1
0
 // This is not an official interop test, but it's useful.
 public static void RunBenchmarkEmptyUnary(TestService.ITestServiceClient client)
 {
     BenchmarkUtil.RunBenchmark(10000, 10000,
                                () => { client.EmptyCall(Empty.DefaultInstance); });
 }
Esempio n. 2
0
 public static void RunEmptyUnary(TestService.ITestServiceClient client)
 {
     Console.WriteLine("running empty_unary");
     var response = client.EmptyCall(Empty.DefaultInstance);
     Assert.IsNotNull(response);
     Console.WriteLine("Passed!");
 }