public async Task GetLoginProfileAsync2()
 {
     Mock<OsLoginService.OsLoginServiceClient> mockGrpcClient = new Mock<OsLoginService.OsLoginServiceClient>(MockBehavior.Strict);
     GetLoginProfileRequest request = new GetLoginProfileRequest
     {
         UserName = new UserName("[USER]"),
     };
     LoginProfile expectedResponse = new LoginProfile
     {
         Name = "name2-1052831874",
         Suspended = false,
     };
     mockGrpcClient.Setup(x => x.GetLoginProfileAsync(request, It.IsAny<CallOptions>()))
         .Returns(new Grpc.Core.AsyncUnaryCall<LoginProfile>(Task.FromResult(expectedResponse), null, null, null, null));
     OsLoginServiceClient client = new OsLoginServiceClientImpl(mockGrpcClient.Object, null);
     LoginProfile response = await client.GetLoginProfileAsync(request);
     Assert.Same(expectedResponse, response);
     mockGrpcClient.VerifyAll();
 }