- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
尝试使用 Nsubstitute 为 RestClient(来自 RestSharp)模拟 ExecuteAsync 方法时遇到了困难。我看过一个使用 Moq 的示例(此处:Mocking Restsharp executeasync method using moq),但我无法理解为什么以下代码使用 nsubstitute 失败:
RestClientMock.When(x => x.ExecuteAsync(Arg.Any<IRestRequest>(), Arg.Any<Action<IRestResponse>>()))
.Do(x => new RestResponse { StatusCode = HttpStatusCode.NotFound });
我就是这样设置的,然后它会像这样命中要测试的代码:
var tcs = new TaskCompletionSource<SendEmailResponse>();
_restClient.ExecuteAsync(_restRequest, (restResponse) => {
if (restResponse.StatusCode != HttpStatusCode.OK)
tcs.SetResult(new SendEmailResponse(ResponseType.Error, restResponse));
else if (!_enableEmails)
tcs.SetResult(new SendEmailResponse(ResponseType.EmailsTurnedOff, restResponse));
else
tcs.SetResult(new SendEmailResponse(ResponseType.Sent, restResponse));
});
return tcs.Task;
它似乎从未在模拟中执行我的回调代码,只是挂起,因为 tcs 从未设置。这里有人知道如何使这项工作成功吗?
编辑:已解决。谢谢恩科西。所以我只是按照下面的解释更新它而不是返回。如果我更仔细地阅读文档,我就会看到 David Tchepak 在评论中提到的部分。
最佳答案
从最初的检查来看,您似乎没有对传递给模拟方法的回调操作做任何事情
RestClientMock
.ExecuteAsync(
Arg.Any<IRestRequest>(),
Arg.Do<Action<IRestResponse, RestRequestAsyncHandle>>(callback =>
callback(new RestResponse { StatusCode = HttpStatusCode.NotFound}, null))
)
关于c# - 使用 Nsubstitute 模拟 RestClient ExecuteAsync,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47624222/
我有一个用“NSubstitute”模拟的接口(interface),它包含返回 concreate 类的属性,即返回值不是接口(interface)。例如 public interface ISom
我有一个用“NSubstitute”模拟的接口(interface),其中包含返回 concreate 类的属性,即返回值不是接口(interface)。例如 public interface ISo
我有一个用“NSubstitute”模拟的接口(interface),其中包含返回 concreate 类的属性,即返回值不是接口(interface)。例如 public interface ISo
我正在使用 NSubstitute 通过 PartsOf() 来模拟一个类方法(我需要一些方法来工作)。它看起来像这样: var mock = Substitute.ForPartsOf(); moc
使用 NSubstitute。对于某些测试,我想断言替代者没有收到任何调用。我可以对界面中的每个方法使用 DidNotReceiveWithAnyArgs(),但这很乏味而且不够健壮(如果将新方法添加
使用 NSubstitute。对于某些测试,我想断言替代者没有收到任何调用。我可以对界面中的每个方法使用 DidNotReceiveWithAnyArgs(),但这很乏味而且不够健壮(如果将新方法添加
我有一个用 NSubstitute 伪造的对象,它有一个被调用两次的方法。我想验证该方法实际上已被调用两次(且仅调用两次)。我浏览了文档和谷歌,但没有运气。任何帮助,将不胜感激。谢谢。 最佳答案 NS
void ABC() { var foo = Substitute.For(); foo.When(x => x.Bar()).Do(x => counter++); ....
我有一个看起来像这样的类(class): public class MyClass { public virtual bool A() { return 5 ();
我在使用 NSubstitute 模拟带有输出参数的方法时遇到过这种情况。我不确定如何最好地用文本解释它,所以我将使用一些人为的示例和测试用例...... 在这个人为的示例中,我将使用 IDictio
void ABC() { var foo = Substitute.For(); foo.When(x => x.Bar()).Do(x => counter++); ....
我有一个看起来像这样的类(class): public class MyClass { public virtual bool A() { return 5 ();
对于下面的代码,我得到了这个断言失败,不知道为什么: Assert.AreEqual failed. Expected:. Actual:. public interface IA { voi
我对 NSubstitute、模拟和单元测试总体来说是新手。 我正在尝试使用 NSubstitute 删除测试类中的一些依赖项,但模拟对象中的方法的行为并不符合我的预期(根据我的配置方式)。以下是我在
假设我有一个类: public abstract class Test { internal abstract int Prop { get; } } 现在,我
我在单元测试中创建了 Person 和 AddressBook 类的替代品。AddressBook 类包含 Person 类型和名称的属性:SamplePerson。 public interface
我有一个测试,其中 NSubstitute 检查假类中的错误调用。当我像下面的代码一样进行测试时,Received(...) 方法会检查值 factory.featureClassName 是否返回一
我有一个带有以下声明的接口(interface): void MapServiceMessages(IEnumerable serviceMessages, List responseMessages
大家好,我是 NSubstitute 框架的新手。我正在尝试测试我的一些类(class),但是当我使用 NSubstitute 检查收到的电话时,它说没有收到匹配的电话。 我正在尝试测试 Tick()
我正在使用 Nsubstitute 进行模拟。为了减少代码,我想编写一个伪造通用属性的通用类: public class Tester where TValue: IValue { /
我是一名优秀的程序员,十分优秀!