为什么使用 It.is<>或It.IsAny<>如果我可以定义一

Why use It.islt;gt; or It.IsAnylt;gt; if I could just define a variable?(为什么使用 It.islt;gt;或It.IsAnylt;gt;如果我可以定义一个变量?)
本文介绍了为什么使用 It.is<>或It.IsAny<>如果我可以定义一个变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

您好,当我看到这段代码时,我已经使用 moq 有一段时间了.

Hi I've been using moq for a while when I see this code.

我必须在我的一个回购中设置回报.

I have to setup a return in one of my repo.

 mockIRole.Setup(r => r.GetSomething(It.IsAny<Guid>(), It.IsAny<Guid>(), 
                  It.IsAny<Guid>())).Returns(ReturnSomething);

我有三个参数,我只是在网上的一篇文章或博客中看到这些.

I have three parameters and I just saw these in one of articles or blog on the net.

It.Is<>It.IsAny<> 对对象有什么用?如果我可以使用 Guid.NewGuid() 或其他类型,那么为什么要使用 It.Is?

What is the use of It.Is<> or It.IsAny<> for an object? if I could use Guid.NewGuid() or other types then why use It.Is?

很抱歉,我不确定我的问题是否正确,或者我是否缺少一些测试知识.不过好像都没什么问题.

I'm sorry I'm not sure if my question is right or am I missing some knowledge in testing. But it seems like there is nothing wrong either way.

推荐答案

使用 It.IsAny<>It.Is<> 或变量 all服务于不同的目的.在设置或验证方法时,它们提供了越来越具体的方法来匹配参数.

Using It.IsAny<>, It.Is<>, or a variable all serve different purposes. They provide increasingly specific ways to match a parameter when setting up or verifying a method.

使用 It.IsAny<> 设置的方法将匹配您提供给该方法的 any 参数.因此,在您的示例中,以下调用都将返回相同的内容(ReturnSomething):

The method set up with It.IsAny<> will match any parameter you give to the method. So, in your example, the following invocations would all return the same thing (ReturnSomething):

role.GetSomething(Guid.NewGuid(), Guid.NewGuid(), Guid.NewGuid());

Guid sameGuid = Guid.NewGuid();
role.GetSomething(sameGuid, sameGuid, sameGuid);

role.GetSomething(Guid.Empty, Guid.NewGuid(), sameGuid);

传递的 Guid 的实际值无关紧要.

It doesn't matter the actual value of the Guid that was passed.

It.Is<> 构造对于设置或验证方法很有用,可让您指定与参数匹配的函数.例如:

The It.Is<> construct is useful for setup or verification of a method, letting you specify a function that will match the argument. For instance:

Guid expectedGuid = ...
mockIRole.Setup(r => r.GetSomething(
                 It.Is<Guid>(g => g.ToString().StartsWith("4")), 
                 It.Is<Guid>(g => g != Guid.Empty), 
                 It.Is<Guid>(g => g == expectedGuid)))
         .Returns(ReturnSomething);

这允许您限制该值,而不仅仅是任何值,但允许您对您接受的内容宽容.

This allows you to restrict the value more than just any value, but permits you to be lenient in what you accept.

当您使用变量设置(或验证)方法参数时,您是在说您想要完全该值.使用另一个值调用的方法永远不会匹配您的设置/验证.

When you set up (or verify) a method parameter with a variable, you're saying you want exactly that value. A method called with another value will never match your setup/verify.

Guid expectedGuids = new [] { Guid.NewGuid(), Guid.NewGuid(), Guid.NewGuid() };
mockIRole.Setup(r => r.GetSomething(expectedGuids[0], expectedGuids[1], expectedGuids[2]))
         .Returns(ReturnSomething);

现在只有一种情况 GetSomething 将返回 ReturnSomething:当所有 Guid 与您设置的预期值匹配时.

Now there's exactly one case where GetSomething will return ReturnSomething: when all Guids match the expected values that you set it up with.

这篇关于为什么使用 It.is&lt;&gt;或It.IsAny&lt;&gt;如果我可以定义一个变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

相关文档推荐

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?(如何模拟没有接口的类?)