本文介绍了使用 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 确定是否调用了方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!