public void List() { moq::Mock <TargetVpnGateways.TargetVpnGatewaysClient> mockGrpcClient = new moq::Mock <TargetVpnGateways.TargetVpnGatewaysClient>(moq::MockBehavior.Strict); ListTargetVpnGatewaysRequest request = new ListTargetVpnGatewaysRequest { Region = "regionedb20d96", Project = "projectaa6ff846", }; TargetVpnGatewayList expectedResponse = new TargetVpnGatewayList { Id = "id74b70bb8", Kind = "kindf7aa39d9", Warning = new Warning(), NextPageToken = "next_page_tokendbee0940", Items = { new TargetVpnGateway(), }, SelfLink = "self_link7e87f12d", }; mockGrpcClient.Setup(x => x.List(request, moq::It.IsAny <grpccore::CallOptions>())).Returns(expectedResponse); TargetVpnGatewaysClient client = new TargetVpnGatewaysClientImpl(mockGrpcClient.Object, null); TargetVpnGatewayList response = client.List(request.Project, request.Region); xunit::Assert.Same(expectedResponse, response); mockGrpcClient.VerifyAll(); }
public async stt::Task ListAsync() { moq::Mock <TargetVpnGateways.TargetVpnGatewaysClient> mockGrpcClient = new moq::Mock <TargetVpnGateways.TargetVpnGatewaysClient>(moq::MockBehavior.Strict); ListTargetVpnGatewaysRequest request = new ListTargetVpnGatewaysRequest { Region = "regionedb20d96", Project = "projectaa6ff846", }; TargetVpnGatewayList expectedResponse = new TargetVpnGatewayList { Id = "id74b70bb8", Kind = "kindf7aa39d9", Warning = new Warning(), NextPageToken = "next_page_tokendbee0940", Items = { new TargetVpnGateway(), }, SelfLink = "self_link7e87f12d", }; mockGrpcClient.Setup(x => x.ListAsync(request, moq::It.IsAny <grpccore::CallOptions>())).Returns(new grpccore::AsyncUnaryCall <TargetVpnGatewayList>(stt::Task.FromResult(expectedResponse), null, null, null, null)); TargetVpnGatewaysClient client = new TargetVpnGatewaysClientImpl(mockGrpcClient.Object, null); TargetVpnGatewayList responseCallSettings = await client.ListAsync(request.Project, request.Region, gaxgrpc::CallSettings.FromCancellationToken(st::CancellationToken.None)); xunit::Assert.Same(expectedResponse, responseCallSettings); TargetVpnGatewayList responseCancellationToken = await client.ListAsync(request.Project, request.Region, st::CancellationToken.None); xunit::Assert.Same(expectedResponse, responseCancellationToken); mockGrpcClient.VerifyAll(); }
public void ListRequestObject() { moq::Mock <TargetVpnGateways.TargetVpnGatewaysClient> mockGrpcClient = new moq::Mock <TargetVpnGateways.TargetVpnGatewaysClient>(moq::MockBehavior.Strict); ListTargetVpnGatewaysRequest request = new ListTargetVpnGatewaysRequest { PageToken = "page_tokenf09e5538", MaxResults = 2806814450U, Region = "regionedb20d96", OrderBy = "order_byb4d33ada", Project = "projectaa6ff846", Filter = "filtere47ac9b2", ReturnPartialSuccess = false, }; TargetVpnGatewayList expectedResponse = new TargetVpnGatewayList { Id = "id74b70bb8", Kind = "kindf7aa39d9", Warning = new Warning(), NextPageToken = "next_page_tokendbee0940", Items = { new TargetVpnGateway(), }, SelfLink = "self_link7e87f12d", }; mockGrpcClient.Setup(x => x.List(request, moq::It.IsAny <grpccore::CallOptions>())).Returns(expectedResponse); TargetVpnGatewaysClient client = new TargetVpnGatewaysClientImpl(mockGrpcClient.Object, null); TargetVpnGatewayList response = client.List(request); xunit::Assert.Same(expectedResponse, response); mockGrpcClient.VerifyAll(); }
/// <summary>Snippet for List</summary> public void List() { // Snippet: List(string, string, CallSettings) // Create client TargetVpnGatewaysClient targetVpnGatewaysClient = TargetVpnGatewaysClient.Create(); // Initialize request argument(s) string project = ""; string region = ""; // Make the request TargetVpnGatewayList response = targetVpnGatewaysClient.List(project, region); // End snippet }
/// <summary>Snippet for ListAsync</summary> public async Task ListAsync() { // Snippet: ListAsync(string, string, CallSettings) // Additional: ListAsync(string, string, CancellationToken) // Create client TargetVpnGatewaysClient targetVpnGatewaysClient = await TargetVpnGatewaysClient.CreateAsync(); // Initialize request argument(s) string project = ""; string region = ""; // Make the request TargetVpnGatewayList response = await targetVpnGatewaysClient.ListAsync(project, region); // End snippet }
/// <summary>Snippet for List</summary> public void ListRequestObject() { // Snippet: List(ListTargetVpnGatewaysRequest, CallSettings) // Create client TargetVpnGatewaysClient targetVpnGatewaysClient = TargetVpnGatewaysClient.Create(); // Initialize request argument(s) ListTargetVpnGatewaysRequest request = new ListTargetVpnGatewaysRequest { PageToken = "", MaxResults = 0U, Region = "", OrderBy = "", Project = "", Filter = "", ReturnPartialSuccess = false, }; // Make the request TargetVpnGatewayList response = targetVpnGatewaysClient.List(request); // End snippet }
/// <summary>Snippet for ListAsync</summary> public async Task ListRequestObjectAsync() { // Snippet: ListAsync(ListTargetVpnGatewaysRequest, CallSettings) // Additional: ListAsync(ListTargetVpnGatewaysRequest, CancellationToken) // Create client TargetVpnGatewaysClient targetVpnGatewaysClient = await TargetVpnGatewaysClient.CreateAsync(); // Initialize request argument(s) ListTargetVpnGatewaysRequest request = new ListTargetVpnGatewaysRequest { PageToken = "", MaxResults = 0U, Region = "", OrderBy = "", Project = "", Filter = "", ReturnPartialSuccess = false, }; // Make the request TargetVpnGatewayList response = await targetVpnGatewaysClient.ListAsync(request); // End snippet }