2
votes
1answer
38 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
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
32 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
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
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 = ...
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
32 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
124 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
36 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 ...
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
86 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
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
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 = ...
0
votes
1answer
77 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() ...
2
votes
3answers
79 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 ...
0
votes
1answer
98 views

Simulate a delay in execution in Unit Test using Moq

I'm trying to test the following: protected IHealthStatus VerifyMessage(ISubscriber destination) { var status = new HeartBeatStatus(); var task = new Task<CheckResult>(() => { ...
0
votes
1answer
106 views

Testing Factory Pattern

I have the small sample factory pattern implementation below, and was wondering if someone can help me write proper Moq unit test cases, for maximum code coverage: public class TestClass { ...
2
votes
3answers
56 views

Mocking a list of objects

I'm learning how to write unit tests and am a little stuck on using Mocks. I'm using Moq for mocking. I am using the built in test framework that comes with VS 2012. I can switch to NUnit if that is ...
2
votes
1answer
92 views

How to test ServiceStack Service using Moq

I have a rest service that I have created with ServiceStack, using nHibernate as a way of getting the data from a SqlCe database. I've been trying to write some unit tests using nUnit and Moq - I have ...
4
votes
3answers
128 views

Combination of Moq and Equals() crashing the MS Testing framework

I have what I think should be a very simple test case, but every time I run it QTAgent32 dies. Running the test case in Debug mode shows a System.StackOverflowException being thrown in 'Unknown ...
0
votes
0answers
52 views

Mock classes in 3rd party library

I'm creating plugin for an application in C#. The plugin calls many methods from classes that reside in the dll from the application that can't be instantiated on their own without the application ...
2
votes
1answer
98 views

User.Identity.Name returns null after being mocked

I am having a bit of a rough time trying to figure out why my mocked User.Identity.Name is returning null when I run my test. I have a feeling that I may have screwed up when I called my ...
0
votes
1answer
58 views

How I can unit-test my entity context

I am working on entity framework and want to unit-test my application. The problem is EntityContext. I am using Moq library. Moq can be used on interfaces and abstract classes. But the problem here is ...
0
votes
1answer
34 views

How to mock IDataReader.GetValues()?

I need to mock a call to IDataReader.GetValues(array) using Moq. The GetValues method should populate "array" with the values from the current row in the DataReader and return the data reader field ...
0
votes
0answers
57 views

Testing multithread situation with Moq throws strange errors

I got following sort of test code for (int z = 0; z < 1000; z++) { .... const int threads = 5; CountdownEvent ce = new CountdownEvent(threads); ...
2
votes
2answers
102 views

Testability versus Over-Design? [duplicate]

Here is the situation actually posed by a co-worker that pegged my interest: public DoSomething() { //Do Stuff var assembly = Assembly.LoadFrom("Path"); //Do More Stuff } So, in order ...
-1
votes
3answers
55 views

Using Moq to Mock an interface still triggers underlying method

I have a class that uses a web service that looks roughly like this: public class MyService : IMyService { private readonly IAuxilaryService1 auxilaryService1; private readonly ...
1
vote
1answer
31 views

Is is possible to setup a mock inside a mock?

Just wondering it is possible to setup a mock inside a mock ? I mean a mock than get configured to return another mock which has a specific setup. I am using Moq. Thanks!
0
votes
1answer
78 views

Mocking HttpPostedFileBase and InputStream for unit-test

I want to test the following line of code: ... Bitmap uploadedPicture = Bitmap.FromStream(model.Picture.InputStream) as Bitmap; ... Picture is a property in my model type HttpPostedFileBase. So I ...
0
votes
1answer
57 views

Mocking properties on the very object you want to test

I have a property on an instance of a class that essentially sums other properties on that class. How can I mock the "known" properties but still call the method on the instance? This obviously ...
0
votes
1answer
88 views

Moq Assert an abstract method is called

I'm writing a unit test for my Abstract class using AutoFixture, this is a representation of what I'm trying to do: public abstract class Base { public virtual void DoSomethingCool() { ...
1
vote
1answer
137 views

Unit tests for ServiceStack services

I am trying to write simple unit test for ServiceStack service, I am going through tests they've online and few threads here. This is the main thread that has most details I am trying to accomplish - ...
1
vote
2answers
54 views

How Would One Unit Test an HtmlHelper Which Actually Uses the helper in the Extension Method

I've spent the better half of this afternoon trying to figure out how to mock (using MOQ) up the relevant bits and pieces to unit test the following HtmlHelper, which users the UrlHelper class to ...
1
vote
2answers
88 views

Unit test: Real database vs. mocking

I'm currently thinking heavily about unit-testing an asp.net mvc 3 web application which our team is building. The problem is that we really have to mock a lot of things and I think our unit tests ...
0
votes
0answers
51 views

What is the DynamicProxyGenAssembly2 assembly?

I use Moq for my unit tests. To test internal interfaces I have to declare the InternalsVisibleTo attribute to the DynamicProxyGenAssembly2 assembly. We run our tests obfuscated, which is useful ...
3
votes
1answer
76 views

Should I always use Mocks when unit testing for the sake of minimising units in test scope

Consider the following test which confirms that when an object is added to the HttpContentConatiner class it's resulting MD5, which is stored on the content container matches the result of serializing ...
1
vote
1answer
79 views

Using #ifdef in classes declaration to make implementation available only during debug for unit testing purposes

I'm starting with unit testing and I want to write tests to some classes that already have an implementation. We are developing for interfaces in this project and I guess it helps when writing unit ...
0
votes
0answers
80 views

Unit testing DataAnnotation ErrorMessageResourceType Path not found

I had to test a simple model like this: public class UserProfile { [Key] [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)] public int Id { get; set; } ...
1
vote
1answer
34 views

Reference of new object in unit test

I have the following method I'd like to test in combination with MOQ: public Company CreateCompany(Company company) { UnitOfWork.CompanyRepository.Insert(company); //Give the user who created ...
0
votes
1answer
97 views

How to initialize a List<T> property in Mock Object?

I have the following code in my [TestInitialize] block and am trying to initialize a List<T> property on my object. [TestClass] public class MyTest { private MyClass myClass; private ...
2
votes
1answer
106 views

Unit test mock Url.Action

I'm writing unit test using the Moq framework and I have a controller function that returns return Json(new { redirectUrl = Url.Action("Action", "Controller"), isredirection = true }); ...
1
vote
1answer
251 views

Mocking Controller.Url.Action(string, string, object, string) in ASP.NET MVC

I use NUnit and Moq libraries for unit testing. I need to mock overloaded Url.Action(string, string, object, string), because my controller's action uses it to get an absolute url of an Action. My ...

1 2 3 4 5 16