关于使用Setup()设置Moq行为的问题

发布于 2024-08-01 20:02:47 字数 839 浏览 8 评论 0原文

我正在尝试 moq,但我有一个关于 Setup() 方法的问题。 我有以下接口和类:

public interface IMyInterface
{
    void Print(string name);
}
public class MyClass
{
    private IMyInterface my;
    public MyClass(IMyInterface my)
    {
        this.my = my;
    }

    public void Print()
    {
        my.Print("hello world");
    }
}

并且我使用 NUnit 进行了单元测试:

[Test]
public void AnotherTest()
{
    var mock = new Mock<IMyInterface>();
    mock.Setup(m => m.Print("hello world")).AtMostOnce();

    var myClass = new MyClass(mock.Object);
    myClass.Print();

    mock.Verify(m => m.Print("hello world"), Times.Exactly(1));
}

我尝试注释/取消注释下面的行,并且两个测试都成功。 这让我想知道在这种情况下是否有必要设置(),因为我正在执行验证()?

我使用的是 3.5.716.1 版本。

I am trying out moq and I have a question regarding to the Setup() method. I have the following interface and class:

public interface IMyInterface
{
    void Print(string name);
}
public class MyClass
{
    private IMyInterface my;
    public MyClass(IMyInterface my)
    {
        this.my = my;
    }

    public void Print()
    {
        my.Print("hello world");
    }
}

And I’ve got this unit test using NUnit:

[Test]
public void AnotherTest()
{
    var mock = new Mock<IMyInterface>();
    mock.Setup(m => m.Print("hello world")).AtMostOnce();

    var myClass = new MyClass(mock.Object);
    myClass.Print();

    mock.Verify(m => m.Print("hello world"), Times.Exactly(1));
}

I’ve tried to both comment/uncomment out the below line and both tests were successful. It makes me wonder if Setup() is necessary in this case since I am doing the Verify()?

I am using version 3.5.716.1.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尘曦 2024-08-08 20:02:47

在您的第一个示例中,您是正确的,您不需要调用安装程序,因为您正在验证安装程序是否只执行一次。

然而,在您的第二个单元测试中,它通过了,因为您实际上没有验证您的设置。

如果您调用mock.VerifyAll(),测试将失败。

AtMostOnce() 设置了一个期望,即它只会执行一次。 仅当您明确验证设置被调用一次时,测试才会失败。 它实际上不会仅仅因为您多次调用它而失败。

In your first example, you are correct, you don't need to call the setup as you're verifying that the setup executed exactly once.

However in your second unit test, it passes because you don't actually verify your setups.

If you call mock.VerifyAll() the test will fail.

The AtMostOnce() sets an expectation that it will only ever get executed once. The test will only fail when you explicitly verify that the setup was called once. It won't actually fail just because you call it more than once.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文