在 Rhino Mocks 中使用列表测试属性集

发布于 2024-12-02 12:18:29 字数 597 浏览 1 评论 0原文

我觉得我已经失去了理智,因为我确信我以前也这样做过。希望你们中的一位能给我指出正确的方向。

本质上,我有一个观点,我想测试演示者是否使用对象列表正确设置属性。示例:

public ComplexDto{
   public string name{get;set;}
   public string description{get;set;}
}

public interface ITestView{
 IList<ComplexDto> dto{get;set;}
}

在 Presenter 中,它设置一个列表,如下所示:

...
var dtos = new List<ComplexDto>();
dtos.add(new ComplexDto(){name="test name", description="this is some description"}
view.dto = dtos;
...

我需要测试 dto 列表的内容是否有效。

我已经尝试过 GetArgumentsForCallsMadeOn 但我认为这不适用于属性。

感谢您的帮助!

I feel like I have lost my mind because I am sure I have done this before. Hopefully one of you can point me in the right direction.

Essentially I have an view that I want to test that the presenter is correctly setting the property with a list of objects. Example:

public ComplexDto{
   public string name{get;set;}
   public string description{get;set;}
}

public interface ITestView{
 IList<ComplexDto> dto{get;set;}
}

Within the Presenter it sets a list like:

...
var dtos = new List<ComplexDto>();
dtos.add(new ComplexDto(){name="test name", description="this is some description"}
view.dto = dtos;
...

I need to test that that contents of the list of the dto work.

I have tried GetArgumentsForCallsMadeOn but I think this does not work with properties.

Thanks for any help!

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

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

发布评论

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

评论(1

睫毛上残留的泪 2024-12-09 12:18:29

编辑

这应该可以做到:

var view = MockRepository.GenerateMock<ITestView>();
var dtos = new List<ComplexDto>();
dtos.Add(new ComplexDto() {name = "test name", description = "this is some description"});

List<ComplexDto> passedIn;
view.Expect(v => v.dto).SetPropertyWithArgument(dtos).WhenCalled(mi => passedIn = (List<ComplexDto>) mi.Arguments[0]);

view.dto = dtos;
view.VerifyAllExpectations();

EDIT

This should do it:

var view = MockRepository.GenerateMock<ITestView>();
var dtos = new List<ComplexDto>();
dtos.Add(new ComplexDto() {name = "test name", description = "this is some description"});

List<ComplexDto> passedIn;
view.Expect(v => v.dto).SetPropertyWithArgument(dtos).WhenCalled(mi => passedIn = (List<ComplexDto>) mi.Arguments[0]);

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