Tagged Questions

Moles is an isolation framework for Microsoft .NET, that allow you to replace any method (including non-virtual/static methods in sealed types) with your own delegate. The moles project was created by the Microsoft Research Pex team.

learn more… | top users | synonyms

56
votes
1answer
1k views

How to tell Pex not to stub an abstract class that has concrete implementations

I'm trying to use Pex to test some code. I have an abstract class with four concrete implementations. I have created factory methods for each of the four concrete types. I had also created one for ...
12
votes
2answers
1k views

How Moles Isolation framework is implemented?

Moles is an isolation framework created by Microsoft. A cool feature of Moles is that it can "mock" static/non-virtual methods and sealed classes (which is not possible with frameworks like Moq). ...
6
votes
1answer
231 views

Pex and F# in Visual Studio 2010 Ultimate

I have been trying using Pex in a F# project but I have faced several issues on which I would appreciate some help: Visual Studio Pex addin worked for half an hour and not for complex project ...
6
votes
2answers
612 views

How use Moles for a constructor?

I have a class like this: public class Product : IProduct { static private string _defaultName = "default"; private string _name; private float _price; /// Constructor public ...
5
votes
1answer
558 views

microsoft moles, dynamically instrument

Moles can be used in two ways: Manually Including [assembly: MoledType(typeof(_type_to_instrument))] Specify [HostType("Moles")] Call Microsoft.Moles.Framework.Moles.MoleRuntime.SetMole(Delegate ...
4
votes
1answer
89 views

How can I use Moles to return different values for multiple calls to a method in C#?

I've been trying to find a solution for this, but either I've been looking with the wrong search terms or there simply isn't an answer for my question yet. Problem: I've got a method that I'd like to ...
4
votes
2answers
374 views

Cannot use moles to mock the MVC framework

I am trying to generate moles for the System.Web.Mvc DLL version 3, but I get the following error: Moles : info : metadata : loading C:\TFS.as12.Projects\Project ...
4
votes
3answers
731 views

Is Pex and Moles project still active?

They used to release a two new versions a month but since October 2010 they haven't released a new one. I've found this. But the fact they have closed its support forum on MSDN makes me suspect the ...
4
votes
3answers
239 views

Using Moles with XUnit - wrong dll version

I'm trying to set up Moles to use in our unit testing. We are using xunit, so I am using the Xunit extension that comes with moles (Microsoft.Moles.Framework.Xunit). However, as we are running Xunit ...
4
votes
1answer
314 views

Can Tests be written in 3.5 MsTest Unit Test assemblies?

Hi: I've enjoyed playing around with Pex and Moles...now it's time to use it in earnest to cover an legacy app as much as possible. We've started by converted to .NET 3.5 (the client can't yet host ...
4
votes
3answers
386 views

Syntax Comparison between Moq and Rhino mocks

My company is trying to decide if we are going to standardize on Moq, Rhino Mocks or MS Moles and Stubs. I know Rhino Mocks and Moles and Stubs fairly well. But I am unfamiliar with Moq. How does ...
4
votes
2answers
958 views

Moling DataContext with MS Moles?

How can I mole the DataContext that I'm using in a class to write messages to a table. I'd like to assert that the table LINQ is writing to has the expected count of messages. Here's what i have so ...
4
votes
2answers
383 views

What to put as the Provider for a mocked IQueryable

I am working with Moles and mocking a System.Data.Linq.Table. I got it constructing fine, but when I use it, it wants IQueryable.Provider to be mocked (moled) as well. I just want it to use normal ...
3
votes
1answer
100 views

Moles For Linq Join

Been busting my head on this one - time to give it up to the crowd: anyone know how to successfully set a Mole (or any other unit testing work around) for a Join in Linq? Specifically, this ...
3
votes
1answer
120 views

Warning of could not resolve Moles dlls on Build server

We are using moles 0.94 for some tests in our solution. However, every time it gets first compiled, the build server will raise a couple of warnings: ...
3
votes
1answer
77 views

How to provide a user defined delegate with out parameters in Microsoft Moles

I wanted to bypass an internal method call and hence have mocked it. The mocked method delegate looks like: public Microsoft.Moles.Framework.MolesDelegates.OutOutFunc<string,string,string, ...
3
votes
1answer
126 views

Running Unit Test with Microsoft Moles Host under Visual Studio 2010 Remote Test Agent in TFS Build

We would like to have our TFS automated CI build and test process use a remote test agent to run our tests separate from our build agent. On normal unit tests that do not use moles or moles host, we ...
3
votes
1answer
159 views

Running Moles on a build server - any ideas how to skip code generation?

Running Moles 0.94 in order to stub out certain types in 3rdparty assemblies which would be otherwise hard to test. Works great locally, tests pass and the solution compiles fine. The first time it ...
3
votes
2answers
275 views

Moles is not working with MVC3 (System.Web.Mvc.dll)

I just started investigate moles framework and I get not really good experince from start. By some reason I can't generate moles for the System.Web.Mvc.dll (v.3) I will try to explain my problem ...
3
votes
2answers
258 views

Moles and SharePoint Behaviour types

We are having problems with the following code: BSPSite site = new BSPSite(); BSPWeb web = site.SetRootWeb(); The error is : Could not load file or assembly 'System.Moles, ...
3
votes
1answer
359 views

Using Moles with DateTime

I'm starting to using Moles in unit tests and am struggling a little with documentation. I want to mole DateTime.Now. If you look around the old way of doing this was to add a reference to mscorlib, ...
3
votes
0answers
180 views

How to run unit tests written with Microsoft Moles without installing it?

Our team is working on writing unit tests for a big .Net project, using “Visual Studio 2010” IDE and “NUnit” (v. 2.5.9) unit-testing framework. Also we use “Microsoft Moles” type-isolating framework. ...
3
votes
1answer
228 views

how can I use Moles to redirect select from tables via LINQ?

I have a table called Subscriptions. I'd like to redirect any LINQ select from that table to a Moles lambda so that only 3 rows are returned from that table -- basically I want to bypass the call to ...
3
votes
1answer
168 views

How do I raise an event from a mole using MS Moles?

The Moles documentation describes how to raise events on class stubs but the same method doesn't work with a full Mole. You can add a delegate to the add / remove methods, but you can't manually raise ...
3
votes
2answers
445 views

Moles without Pex?

Can Moles be used without having to use Pex? Also, Does anyone know when MS Moles will have a Release candidate? I am hesitant of using it in the Production system without knowing which direction it ...
2
votes
1answer
37 views

Microsoft Moles does not generate Stub or Mole for types with obsolete members

We were successfully generating stubs and moles for third party vendor assemblies for our unit tests. With their recent updates a lot of types are being ignored as certain methods have been declared ...
2
votes
3answers
85 views

Can't access information from configuration files when tests have host type “Moles”

We are having problems accessing information in .net configuration files (such as app.config and web.config) via unit tests when the unit tests have a host type of "Moles". It's causing quite a few ...
2
votes
2answers
109 views

Isolation framework for testing for Mono

Having read good things about Moles I'd like to add an isolation framework to our set of tools for writing unit tests. Our application runs under Mono as it is deployed on both Linux and Windows and ...
2
votes
1answer
113 views

How to unit test network connections?

I want to unit test the code below. I've been working with MSTest and I tried to learn Microsoft Moles and RhinoMocks. But I couldn't make neither of them help me. I know I can change the code ...
2
votes
1answer
159 views

Pex & Moles - Dependencey Injection

I'm new to Pex and Moles. I am trying to run Pex on my code but I am using Constructor injection. Is there a way of instructing Pex on how to inject the constructors? Edit public ...
2
votes
1answer
102 views

How does Moles differ from other isolation frameworks, such as Moq, RhinoMocks etc

Pretty much as it says above. I'm wondering how it's different. Being a product from Microsoft, does it do similar things to more common frameworks, but with new names, or slightly differently; just ...
2
votes
2answers
376 views

Moles and Refactoring code

We are embarking on a new greenfield project in my company and it has been decided that we will use Microsoft's Moles framework for ALL our mocking in unit tests. My manager ideally does not want to ...
2
votes
1answer
196 views

How do you use Moles to mole DbContext from querying the database in EntityFramework 4.1?

I am using Entity Framework 4.1 for database access and would like to Unit Test the following code: // Get all the entities including children using (MyContext context = new MyContext()) { return ...
2
votes
1answer
156 views

How to assign/opt from multiple delegates for a 'moled' method?

I am currently examining Moles from the outside while I wait for my VS 2010 license, and I wonder whether Moles allows me to: provide the ability to assígn multiple mole delegates for a method being ...
2
votes
2answers
196 views

How to divert “non public” method in public class moles

I have a public method that uses a local private method to get data from the Db. private string SomeMethod(string) { ... Doing some operations ... string data = GetDBData(string); Doing some ...
2
votes
1answer
170 views

.NET Moles Stub Fallthrough Behaviour

Is it possible in the .NET Moles framework to use the Fallthrough Behavior in Stub Types as we do with Mole Types? I can override the default behavior of a Mole instance by doing: ...
2
votes
1answer
153 views

How do you remove Moles from a project? (Moles 0.94.51023.0 / VS2010 SP1)

The Problem Not only can I not use Moles see this post I can't get rid of them either (much like my backyard). I'm sure I'm missing something [not] obvious [to me]. I see I'm not the only person ...
2
votes
1answer
211 views

Can't install Moles in Visual Studio 2010 SP1

I'm trying to install Moles (without Pex, since Pex is only available for free for non-commercial purposes) using the downloads found here (that's the x86 version, I've tried the x64 version as well). ...
2
votes
0answers
111 views

Moles and Binding Redirects

The scenario I have is pretty common, one nuget package is using V1.0 and another is using V1.1 so I had to add a Binding Redirect. However, the moles runner appears to be ignoring the binding ...
2
votes
2answers
129 views

Is there a way in Moles to mole/mock a method with the params keyword?

Is there a way to mole/stub/mock a method with the params keyword? Here is an example of the Method I am trying to mole/stub: Void SomeMethod(bool finalizer,params string[] parameters)... I have ...
2
votes
2answers
539 views

Moles 0.94.51023.0 error on VS 2010 SP1

I'm trying to mole System.ServiceModel v4 in VS 2010 SP1 with Moles 0.94.51023.0 and I keep getting the following errror: The type or namespace name 'IHttpCookieContainerManager' does not exist in the ...
2
votes
2answers
159 views

Syntax for mocking a method with a ref argument

I have the problem that I can't mock a method that has a ref argument. The signature of the method I want to mock away is as follows: class ContractRepository ... public long GetValueAndIncrement(ref ...
2
votes
2answers
284 views

Unit Testing Scheduler in the FUTURE C#

A bit of more context... i'm using quartz.NET inside a scheduler project (class library) on my application, this is because i want the other projects to be agnostic of the actual implementation, and ...
2
votes
1answer
153 views

Using Moles with System.Reflection

I'm trying to mole the method Assembly.GetEntryAssembly but it appears that only stub types are generated for the System.Reflection namespace i.e. System.Reflection.Moles.SAssembly is generated but ...
2
votes
5answers
2k views

How To Read UnitTest Project's App.Config From Test With HostType(“Moles”)

I have the folowing tests: [TestClass] public class GeneralTest { [TestMethod] public void VerifyAppDomainHasConfigurationSettings() { string value = ...
2
votes
1answer
146 views

Are there free mocking frameworks that can mock methods and classes that are non-virtual, static or sealed?

I know there is TypeMock and JustMock, but both are commercial products and quite expensive. Are there free or open source mocking frameworks that can compete with the two? I am currencly using Moq, ...
2
votes
5answers
1k views

Trying to use Moles with NUnit. Getting “Moles requires tests to be an instrumented process”

I am trying to use moles with NUnit and am getting the following error "Moles requires tests to be an instrumented process". I am also using Visual NUnit within Visual Studio 2008 to get this ...
1
vote
1answer
29 views

Using Moles to mock System.Net.Sockets

I'm trying to use Moles to mock the Socket class in System.Net.Sockets. I have successfully generated the .moles file and building it did add a System.Net.Moles assembly to my references but It dose ...
1
vote
1answer
62 views

How to Mole System.Net.Dns.GetAddrInfo for a wcf client?

I am able to Mole WebRequest.CreateUri so that I can replace the hostname of the request with another. However, I would like to Mole Dns.GetAddrInfo instead so that I can keep the hostname the same, ...
1
vote
0answers
57 views

Moles: Mole a ReadOnly Shared/Static Property

How can I return a different value for MyList using Moles? Given the following class: Namespace Test Public Class MyTestClass Private Sub New() End Sub Public Shared ...

1 2 3 4