使用 Moq 确定是否调用了方法

Using Moq to determine if a method is called(使用 Moq 确定是否调用了方法)
本文介绍了使用 Moq 确定是否调用了方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

据我了解,如果我调用更高级别的方法,我可以测试是否会发生方法调用,即:

It is my understanding that I can test that a method call will occur if I call a higher level method, i.e.:

public abstract class SomeClass()
{    
    public void SomeMehod()
    {
        SomeOtherMethod();
    }

    internal abstract void SomeOtherMethod();
}

我想测试一下,如果我调用 SomeMethod() 那么我希望 SomeOtherMethod() 会被调用.

I want to test that if I call SomeMethod() then I expect that SomeOtherMethod() will be called.

我认为这种测试可以在模拟框架中使用是否正确?

Am I right in thinking this sort of test is available in a mocking framework?

推荐答案

你可以通过Verify来查看你已经mock过的东西中的某个方法是否被调用了,例如:

You can see if a method in something you have mocked has been called by using Verify, e.g.:

static void Main(string[] args)
{
        Mock<ITest> mock = new Mock<ITest>();

        ClassBeingTested testedClass = new ClassBeingTested();
        testedClass.WorkMethod(mock.Object);

        mock.Verify(m => m.MethodToCheckIfCalled());
}

class ClassBeingTested
{
    public void WorkMethod(ITest test)
    {
        //test.MethodToCheckIfCalled();
    }
}

public interface ITest
{
    void MethodToCheckIfCalled();
}

如果该行被留下注释,它会在您调用验证时抛出 MockException.如果未注释,它将通过.

If the line is left commented it will throw a MockException when you call Verify. If it is uncommented it will pass.

这篇关于使用 Moq 确定是否调用了方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to MOQ an Indexed property(如何最小起订量索引属性)
Mocking generic methods in Moq without specifying T(在 Moq 中模拟泛型方法而不指定 T)
How Moles Isolation framework is implemented?(Moles Isolation 框架是如何实现的?)
Difference between Dependency Injection and Mocking Framework (Ninject vs RhinoMocks or Moq)(依赖注入和模拟框架之间的区别(Ninject vs RhinoMocks 或 Moq))
How to mock Controller.User using moq(如何使用 moq 模拟 Controller.User)
How do I mock a class without an interface?(如何模拟没有接口的类?)