如果我们有这样的事情:
public class test
{
public void Condition()
{
if (x == y)
{
methodOne();
}
else
{
methodTwo();
}
}
}
如何使用 Rhino Mock 编写单元测试来断言是否methodOne
被调用?