如何在调用链中最小起订量对象?

发布于 2025-01-13 06:07:32 字数 401 浏览 2 评论 0原文

使用 Moq 有没有办法模拟被测系统调用链中存在的对象?

所以在我的测试中:

var x = mock.Create<ISystemUnderTest>();
var result = x.DoSomething();

然后在我的被测系统中:

public Person User => return new Person(){ Name="Smithy" };

public string DoSomething(){
   var x = User.Name; // I want to use a mock instance here of User
}

当用户没有作为参数提供时,我可以模拟用户吗?但只是调用链的成员?

Using Moq is there a way to mock an object that exists in the call chain of the system under test?

So in my test:

var x = mock.Create<ISystemUnderTest>();
var result = x.DoSomething();

Then in my system under test:

public Person User => return new Person(){ Name="Smithy" };

public string DoSomething(){
   var x = User.Name; // I want to use a mock instance here of User
}

Can I mock User when it's not being provided as a parameter? But just a member of the call chain?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文