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

1
vote
2answers
19 views

Testing With A Fake DbContext and Autofixture and Moq

SO follow this example example and how make a fake DBContex For test my test using just this work fine [Test] public void CiudadIndex() { var ciudades = new ...
3
votes
2answers
50 views

Testing: Entity Framework by faking context

I am eating myself up at this moment. It is like Entity Framework isn't testable. I've read alot of posts and threads where they use unit of work or moq or the repo pattern. I am in a phase that i ...
0
votes
0answers
19 views

When using Moq Verify() method invocation count, have failing test's error message contain actual method invocation count using Moq

Consider the following, where I am testing that an injected dependency's method is called a specific number of times: [Fact] public void WhenBossTalksEmployeeBlinksTwice() { // arrange var ...
1
vote
0answers
48 views

Good Design For Regex, Capture Groups And Unit Testing

In a project I'm experimenting with using regular expressions to distinguish between various types of sentences and map them to functions to handle these sentences. Most of these sentence handling ...
1
vote
0answers
9 views

Raising obfuscated events with moq throws error

We have using Moq for two month now. However there is a problem which can not solve somehow. In visual studio all tests succeeded just fine. On the build server there are serveral tests which failed. ...
2
votes
1answer
39 views

Setup Moq to increment value when method called

I've got a POCO which im saving, like this: _myRepo.Save(somePoco); _myRepo is mocked, e.g: var myRepo = new Mock<IRepo>(); When that Save method is called, i want to set somePoco.Id to 1. ...
0
votes
3answers
43 views

Moq an object created inside the method being tested

In the following example, I want to test the TestMe.DoSomething() function. I want to mock the ISomething interface that is used within this method and make it return different values (depending on ...
0
votes
1answer
47 views

Workflow Services Testing and Moq

I'm trying to unit test a Workflow Service by using Microsoft.Activities.UnitTesting The goal is to mock the service's extensions in order to ensure that all steps are executed. The mock objects ...
0
votes
1answer
34 views

How to use Moq in unit test that calls another method in same class

Hi I am new to Moq framework and have some questions about how to use it. I will give an example and hope for answers. I have two classes, an interface and and an implementation: public class ...
0
votes
2answers
57 views

Moq NHiberNate ISession.Get doesn't call mock session object

I am new to NHibernate and even newer to MOQ (or other similar frameworks). After searching online day and night (google + stackoverflow + others), I am turning here for help. The scenario is ...
0
votes
3answers
56 views

Unit testing - how to snapshot an object?

I'm writting my first unit tests in VS2012 using Moq. I need to create an object that takes in multiple input parameters (not all are passed through interfaces). I've minimized the code for the ...
0
votes
3answers
69 views

Moq : async methods return null

If I try to mock a type containing an async method such as : interface Foo { Task<int> Bar(); } Then the mock's Bar method is returning null. I guess Moq is choosing ...
2
votes
2answers
53 views

Returning a collection via a repository using Moq

I'm relatively new to unit testing and ASP.NET MVC as a whole and I'm trying to write my first unit test against a simple controller action and a repository (as seen below) using Moq. ...
1
vote
1answer
44 views

Unit Testing on Controller that uses AutoMapper

I am trying to unit test a UpdateUser Controller that uses AutoMapping. Here is the code for the controller UpdateUserController private readonly IUnitOfWork _unitOfWork; private readonly ...
0
votes
1answer
36 views

Mocking IDataRecord

I'm trying to mock an IDataRecord using Moq. The mock was created as follows: Mock<IDataRecord> mockDataRecord = new Mock<IDataRecord>(); The line under test is: DateTime timestamp = ...
1
vote
0answers
46 views

access to the Object property after new Mock<RadNumericTextBox>() leads to NullReferenceException

I have to write some tests using moq framework (https://code.google.com/p/moq/). I want to check if some value can be read correctly from a telerik textbox in some ASP.NET application. Therefore I ...
1
vote
1answer
34 views

Verify method called with parameter and call order

I have to verify if a method within a target method get called with a sequence of parameters, like below. For example, how to verify that RepairCar() is called with car parameter first, rather than ...
0
votes
1answer
56 views

How to Moq NHibernate extension methods?

I'm developing an application using NHibernate for the ORM, NUnit for unit testing and Ninject for my DI. I'm mocking the ISession like so: var session = new Mock<ISession>(); With the ...
1
vote
2answers
30 views

Mocking MailController with ActionMailer.net using Moq

I'm trying to mock my MailController _mockMailController = new Mock<IMailController>(); _mockMailController.Setup(x => x.ForgotPassword("test@email.com")); My controller takes an ...
0
votes
1answer
33 views

Mock.Of<T> with constructor arguments

I have a concrete class that I am mocking using Mock.Of, but it does not have a default constructor. Is there any way to get this to work without having to interface this or using new Mock? The former ...
0
votes
1answer
24 views

how to send methods as lambda expressions to moq.setup

My objective is to be able keep the setup method at just one place instead of all my test classes.I want to construct a lamda expression and send it to the set up method directly. However I can only ...
1
vote
1answer
86 views

Unit test Request.QueryString.ToString()

I want to unit test a method that uses Request.QueryString, used like this: public void GetUrl(string url) { var queryString = this.context.Request.QueryString.ToString(); var ...
0
votes
1answer
43 views

How do you mock IContextChannel in a WCF ServiceAuthorizationManager?

I am trying to write unit tests for a custom ServiceAuthorizationManager. The call to CheckAccessCore takes an OperationContext as a parameter. To instantiate an OperationContext, one must pass an ...
2
votes
1answer
53 views

Moq unit test to filter products by their categories

I am new to unit testing so I am sure this is a very basic question, but I couldn't find a solution when I searched for it. I am trying to test to see if I can filter products by their categories. I ...
0
votes
1answer
33 views

MOQ verify for execution doens't work

I'm trying to mock my internal virtual method. When I debug I can see I get to where I expect and my internal virtual method is exceuted but the test fails. Further more, I verified 'this' context is ...
1
vote
1answer
38 views

In ServiceStack is it possible to mock the Request.OriginalRequest object for unit tests?

I'd like to make my ServiceStack service testable. Presently I have: [RequireFormsAuthentication] public object Delete(DeleteRequest request) { var originalRequest = ...
0
votes
0answers
60 views

ASP.Net Mvc Controller testing using Moq

I have some legacy Asp.net MVC code where a private variable is set within the OnActionExecuting method as follows. protected override void OnActionExecuting(ActionExecutingContext filterContext) { ...
2
votes
2answers
125 views

How to use Moq with Entity Framework IDbSet Count() etc. methods

I'm trying to use Moq to make some tests for Entity Framework Code First classes. I'm very new to Moq and mocking techniques and I wonder if it's possible to easily do a test that I will describe ...
0
votes
0answers
17 views

MvcMailer in unit test

I'd like to unit-test a method which is calling a method from the MvcMailer. I get the following error message: ArgumentNullException was unhandled by user code. Value cannot be null. Parameter ...
1
vote
1answer
38 views

MOQ setup function to throw exception doesn't work

I have the following function signature: T SomeMethod(Expression<Func<T, string>> param1, , params Expression<Func<T, object>>[] items); I want it to throw an ...
0
votes
1answer
34 views

mocking testing merge of cells in excel

I have class working with excel worksheet. How to you write test to prove that Merge method gets called. /// <summary> /// Merges the cells together. /// </summary> ...
1
vote
1answer
40 views

Mocking generics that implement multiple interfaces

Here's my class implementation where the generic is implementing two interfaces... public class ClassA<TGeneric> : where TGeneric: IInterfaceA, IInterfaceB I want to Mock ClassA. However, I ...
2
votes
1answer
52 views

Moq - Linq expression in repository - Specify expression in setup

I have a method on my interface that looks like: T GetSingle(Expression<Func<T, bool>> criteria); I'm trying to mock the setup something like this (I realise this isn't working): ...
1
vote
1answer
49 views

Providing a Generic to Mock

I am attempting to generalize some test code in a solution with an MVC project. Because we're writing the same test for each controller, my thought was I could use generics to make it so only one test ...
1
vote
1answer
54 views

Why doesn't Moq see this method being invoked in .Select method?

I created this gist to describe what's happening: https://gist.github.com/IanRandall/5417410 briefly: The .Verify assertion is failing in the first implementation of .Get() method on the ...
0
votes
1answer
57 views

Moq function call with expression

I have the following Interface that is used to DI and IOC webservice clients public interface IWcfServiceClientProvider <TContract>: IDisposable where TContract: class { TResult ...
1
vote
1answer
55 views

How can I mock ServiceStack IHttpRequest

I'm trying to get a unit test working for a service that is injecting items into the IHttpRequest.Items, using a request filter: this.RequestFilters.Add((req, res, dto) => { // simplified for ...
0
votes
5answers
87 views

MOQ - verify exception was thrown

I working with MOQ framework for my testing. I have a scenario in which I expect a fault exception to be thrown. How can I verify it was thrown? public void Koko(List<string?> list) { ...
0
votes
2answers
67 views

Mocking a service call the object returns null

Hello :) I'm a novice in using Moq framework with Unit and I have an issue in which, as I will demonstrate below, I'm trying to Moq a service call on a MVC Controller which takes Session objects as ...
0
votes
1answer
70 views

Mocking DbEntityEntry

I am writing unit tests for my Generic Repository layer but i have some problems with DbEntityEntry. My Update method is like below. public virtual void Update(TEntity entityToUpdate) { ...
0
votes
1answer
25 views

MOQ - verify method with parameter executed regardless of the parameter used

I have a method which inside calls another method. This method has only one signature, for example: Koko(ComplexType isKoko) I want to verify that this method executed without checking the ...
2
votes
2answers
36 views

Using MOQ to verify expression parameter

I am trying to verify the method i am tested has been invoked with a particular expression. I have spent hours on this without the result i wanted. This is the System under test public class sut { ...
0
votes
0answers
19 views

How to moq a navigational property in a model class generated by EDMX?

I'm using the moq framework to test some behavior on model classes generated by the EDMX designer. var mock = new Mock<EDMXGeneratedClass>(); mock.Object.ChildrenProperty = new ...
0
votes
2answers
51 views

Moq returns the same result for different IEnumberable parameter setups

I have come across a very strange behaviuor in moq and I cannot understand whether it's a bug or I am doing something wrong. Here is the example: List<CustomerDataTransaction> transactions0 = ...
2
votes
4answers
83 views

Can I use Moq to set values for fields?

I have a dependency that I would like to mock. public abstract class MyDependency { protected Dictionary<string, object> _outputs = new Dictionary<string, object>(); public ...
0
votes
1answer
79 views

Mocking Request.QueryString for Unit Tests and asserting against views

I have the following controller: public class ResetController : Controller { // // GET: /Reset/ private Models.ResetModel rm = new Models.ResetModel(); public ActionResult Index() ...
3
votes
3answers
89 views

Using Moq, How to setup a method call with an input parameter as an object with expected property values?

Using Moq, How to setup a method call with an input parameter as an object with expected property values? var storageManager = new Mock<IStorageManager>(); storageManager.Setup(e => ...
1
vote
1answer
64 views

Comprehensive Unit Testing for a method

I have a controller method - CurrentValues [HttpGet] public ActionResult CurrentValues(ValueRetrieverViewModel valueRetrieverModel) { int page = 0; ...
0
votes
3answers
24 views

Creating an action based on a mocked controller

I have the following test method that is being used to test a controller. [TestMethod()] public void ResetTest() { var target = new ...
1
vote
1answer
154 views

Comparing lambda expressions in C# with the help of ToString

I'm trying to Assert 2 Linq Expressions in a test. I'm using Moq and on callback capture the expression which was invoked inside the method under test. Expression<Func<Role, bool>> ...

1 2 3 4 5 30