Moq (pronounced "Mock-you" or just "Mock") is a mocking framework for .NET build using the language features of C# 3 and the .NET 3.5 platform.

learn more… | top users | synonyms

63
votes
5answers
4k views

How to verify that method was NOT called in Moq?

How do I verify that method was NOT called in Moq? Does it have something like AssertWasNotCalled? UPDATE: Starting from Version 3.0, a new syntaxt can be used: mock.Verify(foo => ...
56
votes
18answers
12k views

Rhino Mocks, TypeMock, Moq, or NMock? Which one do you use and why?

Which one do you use (if you use the listed ones) and what do you love and even hate about it?
33
votes
4answers
6k views

Assigning out/ref parameters in Moq

Is it possible to assign an out/ref parameter using Moq (3.0)? I've looked at using Callback(), but Action<> does not support ref parameters because it's based on generics. I'd also preferably ...
32
votes
6answers
4k views

What are the capabilities of Moq and Rhino.mocks?

I cannot find a specific feature-by-feature comparison of Moq and Rhino. All the questions are "which do you like better and why", or "here's how you do a simple mock in rhino and how it's done in ...
27
votes
5answers
6k views

How to mock the Request on Controller in ASP.Net MVC?

I have a controller in C# using the ASP.Net MVC framework public class HomeController:Controller{ public ActionResult Index() { if (Request.IsAjaxRequest()) { //do some ...
23
votes
5answers
5k views

How do I use Moq to mock an extension method?

I am writing a test that depends on the results of an extension method but I don't want a future failure of that extension method to ever break this test. Mocking that result seemed the obvious choice ...
21
votes
5answers
7k views

How do I mock the HttpContext in ASP.NET MVC using Moq?

[TestMethod] public void Home_Message_Display_Unknown_User_when_coockie_does_not_exist() { var context = new Mock<HttpContextBase>(); var request = new Mock<HttpRequestBase>(); ...
19
votes
1answer
7k views

Moq: Invalid setup on a non-overridable member: x => x.GetByTitle(“asdf”)

Not sure how I can fix this, trying to do a unit test on the method "GetByTitle" Here are my definitions: public class ArticleDAO : GenericNHibernateDAO(IArticle, int>, IArticleDAO { ...
15
votes
4answers
2k views

Mocking Extension Methods with Moq

I have a preexisting Interface... public interface ISomeInterface { void SomeMethod(); } and I've extended this intreface using a mixin... public static class SomeInterfaceExtensions { ...
15
votes
3answers
5k views

Moq: unit testing a method relying on HttpContext

Consider a method in a .NET assembly: public static string GetSecurityContextUserName() { //extract the username from request string sUser = ...
14
votes
6answers
4k views

Rhino mock vs Typemock vs JustMock vs

I need to choose mock framework to new project. What are the pros and cons for those frameworks? Any comparison table? I know that JustMock is i beta stage but it's look very good right now (very ...
14
votes
5answers
5k views

How do you mock the session object collection using Moq

I am using shanselmann's MvcMockHelper class to mock up some HttpContext stuff using Moq but the issue I am having is being able to assign something to my mocked session object in my MVC controller ...
14
votes
4answers
6k views

Where is the MOQ documentation?

Where can I find comprehensive documentation for MOQ? I'm just starting with mocking and am having difficulty getting my head around it. I've read through all the links at ...
13
votes
10answers
827 views

Why do we need mocking frameworks?

I have worked with code which had NUnit test written. But, I have never worked with mocking frameworks. What are they? I understand dependency injection and how it helps to improve the testability. I ...
12
votes
1answer
1k views

When mocking a class with Moq, how can I CallBase for just specific methods?

I really appreciate Moq's Loose mocking behaviour that returns default values when no expectations are set. It's convenient and saves me code, and it also acts as a safety measure: dependencies won't ...
12
votes
7answers
1k views

What are the real-world pros and cons of each of the major mocking frameworks?

see also "What should I consider when choosing a mocking framework for .Net" I'm trying to decide on a mocking framework to use on a .NET project I've recently embarked on. I'd like to speed ...
12
votes
8answers
1k views

Is there any open source mocking framework resembling TypeMock?

TypeMock is too expensive for a hobbist like me :) Moq or the next version of RhinoMocks have no plans on listening to the profiling API, why is that? EDIT: This enables features such as: Mocking ...
12
votes
2answers
2k views

What is the purpose of Verifiable() in Moq?

What is the purpose of Verifiable()? If I verify a mock and leave this out it still verifies the SetUp. Edit: I was using VerifyAll() thus the reason for everything being verified. After changing to ...
11
votes
3answers
2k views

Weird .net 4.0 exception when running unit tests

Hi guys I am receiving the following exception when trying to run my unit tests using .net 4.0 under VS2010 with moq 3.1. Attempt by security transparent method ...
11
votes
2answers
2k views

Need Help understand Moq better

I been looking at the Moq documentation and to me the comments are too short for me to understand each of things it can do. First thing I don't get is It.IsAny<string>(). //example using ...
11
votes
2answers
2k views

What is the difference between Moq-ing a class or interface?

I've been using moq to mock objects in my unit tests and I've seen on the site about moq that it is able to mock both classes and interfaces. I had a discussion with one of my work mates the other ...
11
votes
3answers
4k views

Using Moq to determine if a method is called

Im very new top mocking frameworks, but I have decided to take a look at 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 ...
10
votes
4answers
1k views

MVC 3: How to learn how to test with NUnit, Ninject, and Moq?

Short version of my questions: Can anyone point me toward some good, detailed sources from which I can learn how to implement testing in my MVC 3 application, using NUnit, Ninject 2, and Moq? Can ...
10
votes
3answers
268 views

Is the moq project dead? Is it wise for me to invest in learning it?

I am fairly new to mocking frameworks and was trying to decide which one will be a good bet to start working on. I have been looking at this question about the best mocking framework, and I can see a ...
10
votes
3answers
4k views

Mock static property with moq

I am pretty new to use moq. I am into creating some unit test case to HttpModule and everything works fine until I hit a static property as follows this.applicationPath = ...
10
votes
3answers
839 views

How to moq a NetworkStream in a unit test?

I'm using Moq & NUnit as a unit test framework. I've written a method that is given a NetworkStream object as a parameter: public static void ReadDataIntoBuffer(NetworkStream networkStream, ...
10
votes
1answer
1k views

“Short circuiting” void methods with Moq?

my team has made the decision recently to use Moq as our mocking framework for its tremendous flexibility and highly readable syntax. As we're new to it, I'm stumbling on what appears to be simple ...
10
votes
3answers
2k views

Unit testing a LINQ2SQL repository

I am taking my first steps with MsTest and Moq and would like to unit test a Linq2SQL repository class. The problem is that I do not want the unit tests to permantly modify my development database. ...
9
votes
2answers
734 views

What is AutoFixture AutoMoq?

I was looking at nuget and wanted to import moq when I noticed AutoFixture AutoMoq. I see that AutoFixture is to help write TDD faster but I can't find any examples of AutoMoq and how it is different ...
9
votes
2answers
1k views

Having trouble getting started with Moq and Nunit

Banging my head against a wall trying to get a really simple testing scenario working. I'm sure I'm missing something really simple! Whatever I do, I seem to get the following error from the NUnit ...
9
votes
2answers
3k views

Use Moq to mock Constructor?

I have such a set of Constructors: public BusinessObjectContext() : this(CloudStorageAccount.FromConfigurationSetting("DataConnectionString").TableEndpoint.ToString(), ...
9
votes
1answer
972 views

SetupSet() is obsolete. In place of what?

Let's say I want to use Moq to create a callback on a setter to store the set property in my own field for later use. (Contrived example - but it gets to the point of the question.) I could do ...
9
votes
1answer
2k views

Moq Callback can you help to understand it

Using moq and looked at callback but I have not been able to find a simple example to understand how to use it. Do you have a small working snippet which clearly explain how and when to use it?
9
votes
2answers
930 views

How to Unit Test HtmlHelper with Moq?

Could somebody show me how you would go about creating a mock HTML Helper with Moq? This article has a link to an article claiming to describe this, but following the link only returns an ASP.NET ...
9
votes
3answers
2k views

Mocking an NHibernate ISession with Moq

I am starting a new project with NHibernate, ASP.NET MVC 2.0 and StructureMap and using NUnit and Moq for testing. For each of my controllers I have a single public constructor into which an ISession ...
9
votes
2answers
3k views

Mocking HttpContextBase with Moq

I have a unit test fixture in which I'm trying to test a ControllerAction on an ASP.NET MVC controller that's used for membership functions on a web app. I'm trying to mock the HttpContext for the ...
8
votes
2answers
1k views

MOQ - Setup() vs SetupGet()

Could anyone please clarify the difference between SetupGet() and Setup() methods for MOQ? Also, is there any online training video or beginners training available for MOQ? Please note, I've already ...
8
votes
4answers
357 views

Using Moq and TDD, where to start?

I have a server application and I was wondering where I should start if I want to start implementing TDD and using Moq. What good books I could read on the subject, which aren't too "web-oriented"? ...
8
votes
1answer
830 views

Why the 'Moq.Proxy.CastleProxyFactory' type initializer exception when using NET40-NoCastle?

So I copied the sample code from the Moq home page pretty much verbatim, and am getting a castle proxy exception. Here's my code (as a console app for an easier sample) using System; using ...
8
votes
1answer
719 views

How to mock ModelState.IsValid using moq framework

I am checking that the ModelState.IsValid in my action method that create the Employee [HttpPost] public virtual ActionResult Create(EmployeeForm employeeForm) { if ...
8
votes
1answer
416 views

Moq: How to get to a parameter passed to a method of a mocked service

Imagine this class public class Foo { private Handler _h; public Foo(Handler h) { _h = h; } public void Bar(int i) { _h.AsyncHandle(CalcOn(i)); } ...
8
votes
1answer
2k views

Moq.Mock<T> - how to setup a method that takes an expression

I am Mocking my repository interface and am not sure how to setup a method that takes an expression and returns an object? I am using Moq and NUnit Interface: public interface IReadOnlyRepository : ...
8
votes
1answer
706 views

Testing ASP.NET MVC View Model

I'm using Nunit and Moq to test my asp.net mvc solution. Is this a good way to test that the model passed to the view is a correct object/collection? [Test] public void ...
8
votes
1answer
1k views

Verifying event registration using Moq.net

I'm developing an asp.net (classic) application trying to implement the MVP pattern using this example. In trying to unit test my presenter and using the following pattern, the psuedocode for which ...
8
votes
11answers
6k views

How to throw a SqlException(need for mocking)

I am trying to test some exceptions in my project and one of the Exceptions I catch is SQlException. Now It seems that you can't go new SqlException() so I am not sure how I can throw a exception ...
8
votes
2answers
1k views

Mocking The RouteData Class in System.Web.Routing for MVC applications

I'm trying to test some application logic that is dependent on the Values property in ControllerContext.RouteData. So far I have // Arrange var httpContextMock = new ...
8
votes
6answers
2k views

How to MOQ an Indexed property

I am attempting to mock a call to an indexed property. I.e. I would like to moq the following: object result = myDictionaryCollection["SomeKeyValue"]; and also the setter value ...
7
votes
2answers
384 views

unit testing a unit of work

new to unit testing. I have a unit of work that I am trying to unit test. I am probably missing something simple here. I am trying to unit test the Commit method. I am using nunit and moq. public ...
7
votes
1answer
172 views

Moq expectations on the same method twice in a row

I am trying to set up exceptions for a method that is called twice in a row with different parameters. Like this: var adapter = new Mock<IKeyAdapter>(); adapter.Setup(x => ...
7
votes
3answers
1k views

Why would I select Moles as my mocking framework?

I've been looking at several Mocking frameworks for ASP.NET and came across Microsoft Moles. This seems to be a part of Microsoft Research team and was wondering If anyone here has selected Moles over ...

1 2 3 4 5 18