使用 FakeItEasy,如何获取假属性上设置的值?

发布于 2024-12-12 11:56:57 字数 695 浏览 1 评论 0原文

使用 FakeItEasy,我尝试捕获假对象上的属性值的设置:

首先是界面:

interface ISomeInterface
{
    int MyProperty {get;set;}
}

然后是单元测试的片段:

var myObject = A.Fake<ISomeInterface>();

int saved = 0;
A.CallTo (() => myObject.MyProperty).Invokes (x => saved = ?????);

SomeMethod (myObject);
Assert.That (saved, Is.EqualTo (100));

并且具有< /strong>

void SomeMethod (ISomeInterface intf)
{
    intf.MyProperty = 100;
}

我不知道用什么来代替????

Using FakeItEasy, I am trying to capture the setting of a property value on a fake object:

First the interface:

interface ISomeInterface
{
    int MyProperty {get;set;}
}

Then a fragment of unit test:

var myObject = A.Fake<ISomeInterface>();

int saved = 0;
A.CallTo (() => myObject.MyProperty).Invokes (x => saved = ?????);

SomeMethod (myObject);
Assert.That (saved, Is.EqualTo (100));

And having

void SomeMethod (ISomeInterface intf)
{
    intf.MyProperty = 100;
}

I don't know what to put to replace the ?????

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹿港小镇 2024-12-19 11:56:58
var myObject = A.Fake<ISomeInterface>();

SomeMethod (myObject);
Assert.That (saved.MyProperty, Is.EqualTo(100));
var myObject = A.Fake<ISomeInterface>();

SomeMethod (myObject);
Assert.That (saved.MyProperty, Is.EqualTo(100));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文