如何断定RhinoMocks中是否在另一个方法中调用了一个方法? [英] How to assert if a method was called within another method in RhinoMocks?

查看:98
本文介绍了如何断定RhinoMocks中是否在另一个方法中调用了一个方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个具有两个方法的类.一种方法需要调用另一种方法,在我的测试中,我想断言它已被调用.

I have a class that has two methods. One method needs to call the other method and in my test I want to assert that it was called.

public class Tasks : ITasks
{
  public void MethodOne()
  {
    MethodTwo(1);
  }

  public int MethodTwo(int i)
  {
    return i + 1;
  }
}

我想模拟 Tasks 并执行类似tasks.AssertWasCalled(x => x.MethodTwo(1))的操作. MethodTwo 必须是虚拟的吗?

I want to mock Tasks and do something like tasks.AssertWasCalled(x => x.MethodTwo(1)). Must MethodTwo be virtual?

推荐答案

当然,我当时的想法是有缺陷的.我应该嘲笑ITasks,而不是实现(任务):

Of course my thinking at that time was flawed. I should be mocking ITasks, not the implementation (Tasks):

ITasks tasks = MockRepository.GenerateMock<ITasks>();
tasks.AssertWasCalled(x => x.MethodTwo(Arg<int>.Is.Equal(1)));

这篇关于如何断定RhinoMocks中是否在另一个方法中调用了一个方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆