如何测试 Relaycommand?
我正在读这篇文章
关于 MVVM 的MSDN 文章。我目前正在查看图#15 中的 RelayCommand。假设我想测试这个 SaveCommand。我该怎么做呢?我正在使用 NUnit 和 Rhino Mocks 3.6
I'm reading this
MSDN Article about MVVM. I'm currently looking at the RelayCommand in figure #15. Pretend I wanted to test this SaveCommand. How would I do that? I'm using NUnit and Rhino Mocks 3.6
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RelayCommand
只是另一个ICommand
实现,因此要触发该命令,您只需在视图模型公开的中继命令实例上调用Execute()
,并传入任何参数。由于您提到的 SaveCommand 不带参数,因此您可以使用以下命令来触发它:
RelayCommand
is just anotherICommand
implementation, so to fire the command you just callExecute()
on the relay command instance that is exposed by your viewmodel, and pass in any args.Since the SaveCommand you mention takes no args you can fire it with: