2
votes
4answers
81 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
2answers
91 views

Mock an update method returning a void with Moq

In my test, I defined as data a List<IUser> with some record in. I'd like setup a moq the methode Update, this method receive the user id and the string to update. Then I get the the IUser and ...
1
vote
1answer
55 views

Mock a method with bool as argument and return a List<> with Moq

In my test, I defined as data a List<IUser> with some record in. I'd like setup a moq the methode GetList, this method receive a bool as parameter. I'd like in return the IUser list where ...
0
votes
2answers
74 views

Mock a method with List<int> as paramater and return List<> with Moq

In my test, I defined as data a List<IUser> with some record in. I'd like setup a moq the methode GetList, this method receive a List<int> as parameter. This list is list of Id, I'd like ...
0
votes
4answers
73 views

How mock a method with one parameter with moq

I'm not familiar with mocking. I'd like test if my method GetById return me an object User with an Id. Below the code, I'd like test if the GetById(10) return me an User with id = 10. I set the moq ...
1
vote
2answers
89 views

C# is there a a spying framework like mockito for .NET 3.5?

I used to have a very convenient spying framework in java called Mockito. It allows you to mock some of methods on existing objects and also could tell you if others were called (you'd create a spy ...
1
vote
2answers
153 views

How can I mock a repository and unit of work pattern in Entity Framework?

I am new in Moq and Unit Testing. I want to test my Repository and Unit of Work pattern with entity framework 5. But I don't understand where and how can I start. My Repository Interface : public ...
0
votes
1answer
67 views

unit testing complex model with nested validation

I'm using fluentvalidation to do model validation. I have a class with a several nested classes or collections of classes, each with their own IValidator. Initially I was doing something like this ...
1
vote
1answer
42 views

.Net - Mocking and Obfuscation

Following problem: We use the mocking library Moq in our unit tests. Therefore we have an InternalsVisibleTo attribute to the DynamicProxyGenAssembly2. Furthermore we obfuscate our assemblies. Here ...
5
votes
3answers
75 views

Are single implementer interfaces for unit testing an antipattern?

In regards to unit testing, I was taught that production code shouldn't have test-related code in it. Well, I feel like I'm breaking that rule every time I try to unit test. I have a class internal ...
1
vote
1answer
59 views

Is there an Autofac Module for SystemWrapper in existence?

There is a .NET library for wrapping System calls named SystemWrapper. I'm using it to enable me to mock out System.IO calls in a project that uses Autofac. Rather than have to write out the ...
0
votes
2answers
68 views

Having Issues Trying To Implement Mock On Interfaces in Nunit

I have been spending quite some time trying to figure out this problem, but so far no luck. I am trying to implement Mock Test on the following I have service with two interfaces. One is to receive ...
0
votes
0answers
36 views

Moqing up an application session (context) and dictionary

I have a session object like so: [Serializable] public class MyContext : IXmlSerializable { public string report = string.Empty; public IDictionary<string, string> dictOptions = new ...
1
vote
2answers
34 views

Is there a way to mock a DB2Exception that has no public constructors?

I'm writing unit tests and I want to simulate the scenario where a DB2Exception gets thrown. The problem is that it has no public constructors, so I can't create it, and most unit-testing frameworks ...
0
votes
2answers
73 views

How do I use Moq and check just part of an object passed into a function?

I'm trying to add a unit test to an authentication class I have. So, basically what it does is I call Login and I expect that it will return true and as a side effect will add a cookie. Here is my ...
1
vote
2answers
278 views

Can I create a SqlDataReader and provide it with values without having to return a SqlDataReader from another object e.g. SqlCommand.ExecuteReader()

I am writing unit tests for my data access layer. To achieve this I have created a wrapper for SqlCommand (ISqlCommand) so that I can mock its functionality. ISqlCommand command = ...
1
vote
1answer
182 views

Mocking LINQ-to-SQL navigation property for an object created at runtime w/ NSubstitute

I am stumped here. I have struggled to find any viable answer to my question both here and within NSubstitute's documentation. I'm trying to unit test a service method where, after an object is ...
0
votes
1answer
67 views

Is there a mocking framework that works with the .NET Client Profile?

I have a somewhat exotic use case for a mocking framework. I would like to generate stub objects to be used by the WinForms designer in my client application. The point is to enable dependency ...
0
votes
2answers
88 views

Inherit or wrap a class that deals with concurrency

In trying to provide a unit-testable (using Moq) abstraction of ConcurrentQueue<T> I am debating whether I lose the benefits of using the framework's ConcurrentQueue<T> implementation ...
1
vote
1answer
350 views

How to set the IP (UserHostAddress) on a "mocked' BaseHttpContext?

I'm trying to create a dummy BaseHttpContext to do some (mock) testing without having to do an actual request. I like to add an IP address to my dummy context. string url = "http://www.google.com"; ...
2
votes
1answer
77 views

Is using HttpContext directly a bad thing?

I have a little alternative MVC framework built atop ASP.Net(though not strictly tied to it). One of the things I mess around with a whole lot is HttpContext instances and HttpContext.Current. ...
3
votes
1answer
94 views

How do I call a predicate passed as a parameter in Moq?

I've got an interface which has a method named: IEnumerable<string> GetFilesInADirectoryWhere( string directory, string wildcard, Predicate<string> filter); I want to ...
2
votes
2answers
184 views

What could be the use of (Random.NextDouble() < 1)

I've seen in several applications I'm supporting the following sentence: Random rnd = new Random(); if (rnd.NextDouble() < 1) { ' Do stuff } What could be the purpose of this? rnd is going ...
5
votes
2answers
444 views

Mongodb unit testing in .NET

I am trying to do tdd and use mongodb as database. But i cant resolve problem of mocking mongodb. Is there any ability to mock mongodb for unit testing in .NET? Update I found very good soltion ...
3
votes
2answers
229 views

Can I use Moq in this situation?

What possible work-around do I have for mocking this object using Moq. The error message returned is: "Invalid setup on a non-virtual (overridable in VB) member: p => p.Certificate.SubjectName.Name" ...
1
vote
1answer
104 views

moq: How do I setup behaviour of constructor in generated proxy?

I have an abstract class (let's call it AbstractOutputter). When I derive from it, I make calls to a protected method in the constructor of the derived class. AbstractOutputter public abstract ...
2
votes
1answer
252 views

C# - Moq - Object of mocked Interface is a proxy instead of the exposed class

I am trying to Mock SqlConnection, which essentially is IDbConnection. For that I prepare my mock for my test: var dbConnectionMock = new Mock<IDbConnection>(); dbConnectionMock.Setup(x => ...
0
votes
1answer
169 views

How to substitute exception?

I want to substitute an exception and it's fields. Something like that: var webExcetion = Substitute.For<WebException>(); webExcetion.Response.Returns(httpWebResponse); ...
1
vote
1answer
505 views

All invocation on the mock must have a corresponding setup

Hej Hej, I am new at creating mock objects for unit tests. I have some legacy code I want to unit test. I created a first moq test but I am getting the following exception: ...
2
votes
3answers
542 views

Moq and throwing a SqlException

I have the following code to test that when a certain name is passed to my method, it throws a SQL exception (there is reason to that one, although it sounds a little odd). mockAccountDAL.Setup(m ...
0
votes
1answer
152 views

RhinoMocks: How to run custom delegate with parameter supplied to method?

I have a class that has a create method, passing into it a POCO entity. What I want to happen is that I attach a delegate to the method call like so: stubObject.Stub(Function(i) i.Create(Arg(of ...
0
votes
0answers
25 views

Which mock frameworks support ordered mock expectations in an AAA style?

We are trying to pin the behavior of a module that orchestrates several pieces of hardware (a robot, some linear motors, etc). It is very important that certain calls are made in order, that some ...
3
votes
1answer
701 views

How to mock Microsoft.Office.Interop.Excel.Range with Moq?

I want to mock the Microsoft.Office.Interop.Excel.Range (and the other Microsoft.Office.Interop.Excel interfaces) to unit test my application. I'm using Moq 4.0.10827 with .NET 4 in C#. In my unit ...
1
vote
1answer
74 views

Is there any way to get Rhino Mock to automatically generate the “Expect.Calls” at runtime?

Is there any way to get Rhino Mock to automatically generate the "Expect.Calls" at runtime? So if we were to personify Rhino mock, it would say..."According to this setting, I'm going to generate an ...
0
votes
1answer
124 views

Returning a calculated value from Moq with multiple values passed in

In some of my unit tests I am trying to return the string passed as a parameter using Moq. If I ask it to return a specified string such as "home.aspx" it will work. var navMock = new ...
0
votes
1answer
128 views

How to replace the execution of a method with RhinoMocks

Can anyone please explain why in RhinoMocks this code still ends up executing the native SomeVirtualMethod? var repository = MockRepository.GenerateStub<MyRepository>(null, null); ...
2
votes
2answers
352 views

Need some advice for trying to mock a .NET WebClient or equivalent

I've got some code which downloads some RSS feeds. I've been using WebClient or Argotic.Syndication.RssFeed libraries. But these aren't mockable :( I definately do not want to hit the real RSS feed ...
4
votes
2answers
585 views

Partial mocking of class with Moq

I want to mock only the GetValue method of the following class, using Moq: public class MyClass { public virtual void MyMethod() { int value = GetValue(); ...
4
votes
2answers
446 views

How to unit test service that is using PetaPoco.Database

I am using PetaPoco on my current project as a micro ORM and i must say that i like it. However, i found myself struggling with simple scenario - unit testing services that use PetaPoco.Database ...
0
votes
2answers
597 views

Mock HttpPostedFileWrapper

I am trying to Mock the MVC object HttpPostedFileWrapper so I can test the "ContentType" and "InputStream" properties in particular. I set up my mock as so: var mockPostedFile = new ...
1
vote
1answer
205 views

Drawbacks to using mocking frameworks in Design Time Code

I am working on a Prism template for my company. I want to make design time data as easy to do as possible. To that end, I am making a Design class that inherits from my ViewModel. The ...
1
vote
1answer
74 views

Mocking ImageSource with Moq

I want to create a mock of ImageSource for unit test purposes. ImageSource has an internal constructor and I can't neither create a mock nor create an inherited class. As is explained here for ...
0
votes
0answers
136 views

Is there a tool that generates mock classes and associated data from execution time objects?

I'm working on a brownfield app. There are no unit tests. Most of the classes are mutable and have their properties set after construction. I need to mock the data for each of said classes. At ...
1
vote
1answer
214 views

Future mocking concept in mocking framework [closed]

I'm looking into JustMock the mocking framework from Telerik. It seems pretty good and all. There is one particular feature that is really interesting for us is what they call Future Mocking. Where ...
3
votes
3answers
269 views

Mocking a LinqToSql repository in-memory for use in unit tests

I'm looking into making a mockable DataContext that I can use in unit tests. One approach is described here. However, the problem with this approach is that changes to the repository have effect ...
0
votes
1answer
35 views

Mocking Object issue

I am trying to make following mocking var checkComponent = MockRepository.GenerateStub<IController>(); checkComponent.Stub(r => r.GetSelector().Select(new Position(3,6,1))).Return(true); ...
1
vote
1answer
90 views

Why can't `Table` member implement underlying interface `ITable` member?

I'm experimenting with the following mockable repository pattern: public interface IEmployeeRepository { ITable<Employee> Employees { get; } } This represents a container capable of ...
3
votes
1answer
924 views

Moq, abstract class and virtual properties

I am using Moq framework for Mocking. I have a SocialWorker which derives from an abstract DataWorker class. The SocialWorker has reference to couple of Repositories as a virtual property I am ...
0
votes
1answer
334 views

How to add members to a PSObject in C#?

I'm using Microsoft Moles to mock a method. This method call another method that invokes a PowerShell script and returns Collection<PSObject> So I want to mock it to return a custom ...
5
votes
3answers
413 views

Faking TCP requests in C#

Part of my n00b server: TcpClient client = tcpListener.AcceptTcpClient(); Thread clientThread = new Thread(new ParameterizedThreadStart(handleClientRegistration)); clientThread.Start(client); ... ...

1 2 3 4 5 6