gpt4 book ai didi

properties - Rhino Mocks - 当属性没有 Get 时验证属性集

转载 作者:行者123 更新时间:2023-12-02 23:52:16 25 4
gpt4 key购买 nike

如果您有特性:

public class Fred
{
public string UserName
{
set
{
userName=value;
}
}
}

如何使用 Rhino Mocks 来检查

fred= new Fred();
fred.UserName="Jim";

被调用。

Expect.Call(mockFred.UserName).SetPropertyWithArgument("Jim");

无法编译。

最佳答案

public interface IFred
{
string UserName { set; }
}

[Test]
public void TestMethod1()
{
IFred fred = MockRepository.GenerateMock<IFred>();
fred.UserName = "Jim";
fred.AssertWasCalled(x => x.UserName = "Jim");
}

关于properties - Rhino Mocks - 当属性没有 Get 时验证属性集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/526267/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com