-3

我不清楚为什么在操作实际上被标记为异步时收到此消息。

这是我的测试

public void TestMethod1()
   {

   SvcRestClient client =
            new SvcRestClient(new Uri("http://localhost:44395"),
                new AnonymousCredential());

   var tokenRequest = new TokenRequest
        {
            Username = "myusername",
            Password = "p@ssword1"
        };

   tokenRequest.Validate(); // passes

   var tokenResponse = await client.ApiRequestTokenPostWithHttpMessagesAsync(tokenRequest);  


    }

如果我尝试添加 await 我会收到警告

在此处输入图像描述

4

1 回答 1

2

您需要更改测试方法的签名以包含async以等待测试中的任务。

public async Task TestMethod1() { // Codes to follow.
于 2018-05-18T23:22:22.727 回答