public void Connect()
 {
     grpc.Channel channel = new grpc.Channel(host, port, grpc.ChannelCredentials.Insecure);
     this.client           = new EdgifyService.EdgifyServiceClient(channel);
     this.analytics_client = new AnalyticsServiceClient(channel);
     this.samples_client   = new SamplesServiceClient(channel);
 }
Beispiel #2
0
 public void BeforeEachTest()
 {
     _client = new SamplesServiceClient("http://example.com/api");
 }