Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Moq, strict vs loose usage

In the past, I have only used Rhino Mocks, with the typical strict mock. I am now working with Moq on a project and I am wondering about the proper usage.

Let's assume that I have an object Foo with method Bar which calls a Bizz method on object Buzz.

In my test, I want to verify that Bizz is called, therefore I feel there are two possible options:

With a strict mock

var mockBuzz= new Mock<IBuzz>(MockBehavior.Strict); mockBuzz.Setup(x => x.Bizz()); //test will fail if Bizz method not called foo.Buzz = mockBuzz foo.Bar(); mockBuzz.VerifyAll(); 

With a loose mock

var mockBuzz= new Mock<IBuzz>();     foo.Buzz = mockBuzz foo.Bar(); mockBuzz.Verify(x => x.Bizz()) //test will fail if Bizz method not called 

Is there a standard or normal way of doing this?

like image 936
Bryan Rowe Avatar asked Feb 14 '11 19:02

Bryan Rowe


People also ask

What is the difference between strict and loose mock?

The majority, if not all, of mocking frameworks provides 2 types of mocks i.e. strict & loose. The difference between them is that the strict mocks will throw an exception if an unexpected (not configured /set up) method was called. I prefer to use loose mocks because with strict ones unit tests are fragile.

What is strict in MOQ?

Strict behavior means that exceptions will be thrown if anything that was not set up on our interface is called. Loose behavior, on the other hand, does not throw exceptions in situations like this. Mocks, by default, are loose.

When you need to use mocks in unit tests What is the difference between strict and loose mock?

Normal (or loose) mocks are used when you want to verify that an expected method has been called with the proper parameters. Strict mocks are used to verify that only the expected methods have been called and no other.

What is MOQ mocking framework?

Moq is a mocking framework built to facilitate the testing of components with dependencies. As shown earlier, dealing with dependencies could be cumbersome because it requires the creation of test doubles like fakes. Moq makes the creation of fakes redundant by using dynamically generated types.


1 Answers

I used to use strict mocks when I first starting using mocks in unit tests. This didn't last very long. There are really 2 reasons why I stopped doing this:

  1. The tests become brittle - With strict mocks you are asserting more than one thing, that the setup methods are called, AND that the other methods are not called. When you refactor the code the test often fails, even if what you are trying to test is still true.
  2. The tests are harder to read - You need to have a setup for every method that is called on the mock, even if it's not really related to what you want to test. When someone reads this test it's difficult for them to tell what is important for the test and what is just a side effect of the implementation.

Because of these I would strongly recommend using loose mocks in your unit tests.

like image 192
Andy Lowry Avatar answered Oct 02 '22 16:10

Andy Lowry