Moles - an isolation framework for Microsoft .NET. It allow you to replace any .NET method with a delegate.

learn more… | top users | synonyms

2
votes
1answer
96 views

Shims are not generated for .NET methods

When I began using Microsoft Fakes, I was excited to start shimming some .NET methods. I was lead to believe that I would be able to shim ANY .NET method, static or not: ...
0
votes
0answers
23 views

Mole web service InvalidCastException

I am having an issue with moles, .net 4, vs 2010, this is my first time using moles so I may be a little unfamiliar with it I am trying to mock a web service call and have it return an array however ...
0
votes
1answer
24 views

Stubs access to the protected variables

I need to unit test an this class: public abstract class GaBase { protected GoogleAnalyticsInfo GAInfo; protected abstract void PopulateGAInfo(); public string GetGoogleAnalyticsTag() ...
0
votes
1answer
30 views

Microsoft.Moles.vshost has stopped working

I have a bunch of unit tests written in C# that use moles for mocking a serial port class. I'm using Visual Studio 2008. This has all worked fine until today when I went to re-run the tests... and ...
0
votes
0answers
48 views

Issues to compile pex and moles in test project with .net 4.0

Tooling: VS 2010, C# 4.0, Test Project, Pex and Moles I am facing the following issue when compiling a test project that´s using moles. The main scenario is that when I compile the project ...
0
votes
1answer
79 views

Adding moles assembly for System.Data failed

I am using Microsoft Moles Framework (x86) version 0.94.51023.0 in one of the unit test projects (VS 2010 unit tests). To test the data access layer methods in the application, I tried to add moles ...
0
votes
0answers
50 views

How to mock My.Settings.Item(“settingName”) in ASP.Net using Pex and Moles framework provided by Microsoft?

I have a call inside a method of an asp.net web service which uses data retrieved from web.config file using My.Settings.Item("settingName"). I need to mock My.Settings.Item("settingName") using Pex ...
2
votes
0answers
36 views

MissingFieldException when using Moles for class with const members

We are using Moles to isolate new units from legacy mechanisms we cannot modify. When such legacy classes contain const members, we are getting a long series of MissingFieldException for each of the ...
0
votes
0answers
80 views

Problems with MS Fakes generation and non-deterministic test results [closed]

I just started playing around with Fakes in VS2012, but I've run into a couple of roadblocks. Tons of classes in my project are not showing up with Shims or Stubs. I've tried adding diagnostic ...
0
votes
0answers
160 views

How do I get Fakes to support SOAP in Visual Studio 2012

I am using VS 2012 Fakes with VS testing framework, and I am no longer able to fake my SOAP client as I was able to with Moles in 2010. My test method is using the ShimContext which calls my setup ...
0
votes
0answers
25 views

Microsoft Moles & Nunit - why /domain=None required?

I'm trying to create some unit tests with Moles(0.94.51023.0) and found out that my experimental moled tests succeed when nunit-console.exe takes argument: /domain=Multiple. But moles documentation ...
3
votes
1answer
99 views

Mocking Azure Storage Transactions

I am looking for mocking the azure storage transactions using Moles Mocking framework. Any thoughts/documentation/samples on how to mock the azure storage transactions using Moles or may be any other ...
3
votes
4answers
147 views

Unit testing: how to test methods with a lot of underlying objects and business logic

I am really new to unit testing, and I can't figure out the proper way to do it for my case, though I spent crazy amount of time on research. My code base is huge (~3 years of work), very coupled ...
1
vote
0answers
39 views

How to mole or moq e particular function which gets called in a static function

I want to test a particular function. That function has call to static method of a different class which is protected thus cannot be access from outside. As I am doing component level testing I ...
0
votes
2answers
419 views

Cannot assign to <method name> because it is a method group: Error (Using Moles framework)

These two lines of code give me the error as mentioned in the title. I am trying to define a stub for TestClass var stubTestClass = new StubsTutorial.Moles.STestClass(); stubTestClass.WriteStuff = () ...
0
votes
2answers
57 views

Mocking the throwing of exceptions with Microsoft Moles [duplicate]

Possible Duplicate: How to throw a SqlException(need for mocking) I want to mock the throwing of SqlException when ExecuteNonQuery is executed; ...
1
vote
1answer
122 views

Behaviour Models in Fake framework

In Visual Studio 2010, here was way to test ASP.NET application with Behaviors.Now, in VS 2012, they have upgrade to Fakes Framework. How do you achieve the same with Fakes? Creating Fakes assembly ...
2
votes
1answer
146 views

Need assistance in moling BeginInvoke off of delegate type during UnitTest

In my class, i have declared a delegate type, I am creating an instance of it, and then calling BeginInvoke off of that instance: public class ClassA { ... public delegate bool MyDelegate(int ...
2
votes
1answer
78 views

Unit testing in case of a service locator pattern

I am using moles framework to unit test my code. There is an implementation of a singleton class with A private (empty) constructor A public static readonly Instance variable This class ...
3
votes
1answer
810 views

Moving away from Pex and Moles in VS 2012?

When it comes to testing I've backed into it. I'm now a huge fan, and often do something like TDD. In VS 2010 for design and regressions I've just used MSTEST. This is great - all my projects are open ...
0
votes
0answers
23 views

How to control Pex digging deep

When I try to do an Pex exploration on my source that calls to certain system files and functions. Many times I get path bounds exceeded in the system file class functions. How can I get Pex to run ...
3
votes
1answer
398 views

Unit tests fail when using Moles 0.94 and VS2012, “Hosting rules specify that the test type 'Unit Test' cannot run in the host adapter 'Moles'”

I'm trying to run some Unit Tests using Moles 0.94 and VS2012 in preparation to moving to TFS 2012. The tests currently work fine on a TFS 2010 build server. The first error I got was: The host ...
1
vote
2answers
121 views

DefaultIfEmpty Linq to Sql returning null in Moles test

I made a moles in for testing my repository class and it works when I put DefaultIfEmpty(new Drivers()) but when I run the program, I get this error: Unsupported overload used for query operator ...
0
votes
1answer
192 views

Many errors when “Add Moles Assembly for mscorlib”

I want to de-tour some method calls into the mscorlib assembly, so I tried to generate a Mole assembly for mscorlib. But it gives me thousands of errors. I am using Win8+VS2010, VS2012 is installed ...
0
votes
0answers
80 views

Mole HttpRequest.Files

I am unit testing a web application and I am using Moles to mock up a HttpRequest. I am now trying to test some file upload functionality that uses HttpRequest.Files, so I am trying to find the ...
1
vote
1answer
102 views

Pex suggest a solution with Moles's error

I try to use Pex to explore the following method : public float MultiplyFloat(float a, float j) { if (a * a == 2) { if (j == 123) { a = 2; } } else a = 3; ...
1
vote
0answers
260 views

How to effectively test SiteCore LinkField

I have been using moles to write unit tests on the hard to reach parts of my code – particularly where I use the types found in the sitecore class libraries (which are hard to use mocking frameworks ...
1
vote
0answers
215 views

Using Moles for TDD with HttpWebRequest

I am using VS2010 with SP1 (also have VS2012 installed on the same machine). Moles 1.0 The project is using .NET 4 I added moles assembly to system.dll and get the following error on compile Error ...
1
vote
1answer
28 views

Moles appears to require moled methods to be hashed

I am trying out Moles on a home project to (hopefully) be able to recommend that it be adopted in projects at work. I am working with VS 10.0.30319 and Moles 1.0.0.0. I have created the following ...
0
votes
0answers
56 views

How to set up NUnit and Moles so that third party assemblies can be loaded

I'm trying to run a test with NUnit and Moles. I have my unit test in a separate assembly to the assembly of the thing I'm trying to test. When NUnit tries to run the SetUp for each of the tests, ...
0
votes
1answer
66 views

Moles framework: How does it drill through?

When Moles framework is used, it allows any function call to be mocked up. This is aquote from here: http://msdn.microsoft.com/en-us/library/ff798308.aspx When execution enters a method, such as ...
1
vote
2answers
165 views

Create a Partial Stub in Microsoft Moles

I am pulling my hair out with this one. I have looked and cannot find a simple, clear example of creating and using a partial stub with Microsoft Moles. Maybe I'm missing somethimg, or have my code ...
0
votes
0answers
91 views

Can I use PEX with a differnet mocking framework then moles/fakes?

Currently I am using Nunit and Moq for unit testing in my C# projects. Now I want to try the automatic unit-test generation tool PEX. I read some articles and watched the videos on channel9. As I ...
3
votes
1answer
157 views

Will Fakes be made available on versions of Visual Studio other than 'Ultimate' as Moles is?

Does anyone know if there are any intentions to make Fakes available on releases of Visual Studio lower than Ultimate? Fakes seems to be billed as replacing Moles but if it will only work in ...
0
votes
0answers
74 views

Generating Moles for system assemblies under NET4

I'm trying to generate moles for mscorlib or System dlls. When I use any framework version (2, 3.5, 3.5 CP) it works and generates assemblies correctly. But when I set framework version to 4 (4, 4 CP) ...
1
vote
1answer
96 views

Moles with .net 3.5

We are trying to use Moles in our unit tests. However, we are running into problems because our code is currently built with .net 3.5 and upgrading it to .net 4 is currently not an option. When I ...
0
votes
2answers
623 views

Working with Microsoft Moles in Visual Studio 2012

I have a visual studio 2010 solution (.Net3.5) that used Microsoft Moles for testing, I opened it in Visual Studio 2012 and I was able to build it, however I cannot run the tests from Visual Studio. ...
0
votes
0answers
12 views

No prebuilt Moles libraries after install

Moles have prebuild versions of system libraries. I installed Moles on my machine and all works well. But after my colleague installed Moles Program%Files\Microsoft Moles\MolesAssemblies\...\2.0.0.0.. ...
2
votes
2answers
256 views

Moles not Woking with VS2010 Framework 4 Client Profile

I have build a solution in .net4 Client Profile. Now i have add the test project & tried to add Moles assembly for the my dll.it gives an error saying that "The Command "path to the Mole.exe" ...
2
votes
2answers
531 views

Assembly created by Moles in VS2010 is referencing MVC3 and MVC4 after install of VS2012

Assembly 'dllname.Moles, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null' uses 'System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has a higher version than ...
-1
votes
1answer
200 views

Mole System.Random class

I have the following method to test : public float coverageJump(bool a) { int c = 0; first: c++; Random random = new Random(); float result = random.Next(0, 100); ...
5
votes
4answers
761 views

Microsoft Fakes and .Net 4.0

we've been looking into using the new Fakes framework to help us increase the test coverage on some legacy code running under the .net 4.0 framework. Unfortunately, it seems like we're going to be ...
2
votes
0answers
165 views

NCover (v3.4.18.6937) does not collect any coverage information when testing with Moles (v0.94) and MSTest (v10.0)

currently I am trying to get a code coverage with NCover for a MSTest assembly which uses Moles as Isolation framework. After hours of testing NCover does not gather any coverage information. I ...
0
votes
0answers
49 views

Moling a generic method sometimes fails

I have a private method that takes some generic type parameters that I am moling. When I run the unit test by itself, it passes. When I run two tests together, the second one fails. The difference ...
1
vote
1answer
80 views

Microsoft Moles and type casting

I tries some Unit Testing and ran into a problem of testing methods which use classes instances and not the interfaces. In that case I found that MS Moles can help me. But the it seems that they are ...
0
votes
2answers
671 views

Moles/Fakes: How do I implement a test setup?

I have been recently working with Moles and I am now switching to Fakes. In my old test project I had a test setup, which looked like this: [TestInitialize] public void Setup() { //... } In ...
1
vote
1answer
887 views

Visual Studio 2012 Fakes not generating a stub for an interface that has a method with Stream return type

Using Visual Studio 2012 to generate stubs with "Add Fakes Assembly", everything works as expected, except it is failing to generate a stub for this interface: public interface IFileWrapper { ...
2
votes
0answers
157 views

TypeInitializationException with Moq and Moles when using [HostType(“Moles”)]

Moq throws a TypeInitializationException when using Moles with the [HostType("Moles")] attribute. Code example and exception below. [TestMethod] [HostType("Moles")] public void TestMethod() { ...
1
vote
1answer
65 views

Moles 0.94.51023.0 and NCover 1.5.8

I have been trying to generate coverage from NCover with moles and NUnit as runner but coverage is 0% tried posts at NCover 1.5.8 with Moles/Pex and NUnit how to integrate ncover ,moles & ...
0
votes
0answers
86 views

Set mole for MTable<T>.AllInstances.DeleteAllOnSubmitIEnumerableOfTSubEntity

Set a mole for DeleteAllOnSubmit I have been looking on the internet for a way to mole the method DeleteAllOnSubmit of Linq to SQL. Where I can mole the normal DeleteOnSubmit this proves to be more ...

1 2 3 4 5 6