本文介绍了使用 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 确定是否调用了方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
The End


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)