Tagged Questions

The tag has no wiki summary.

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 ...
13
votes
3answers
2k views

How to use “Pex and Moles” library with Entity Framework?

This is a tough one because not too many people use Pex & Moles or so I think (even though Pex is a really great product - much better than any other unit testing tool) I have a Data project that ...
11
votes
5answers
2k views

Anyone using Moles / Pex in production?

I did search the forum and did not find a similar question. I'm looking to make a final decision on our mocking framework of choice moving forward as a best practice - I've decided on Moq... untill I ...
7
votes
3answers
2k views

Why would I select Moles as my mocking framework?

I've been looking at several Mocking frameworks for ASP.NET and came across Microsoft Moles. This seems to be a part of Microsoft Research team and was wondering If anyone here has selected Moles over ...
6
votes
1answer
230 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 ...
4
votes
3answers
237 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
385 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
957 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
375 views

Integrate Pex with MoQ

Can anyone point me to a resource that shows an example of how Pex can be used in conjunction with MoQ? Thanks
4
votes
2answers
380 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
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
158 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
257 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
357 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
1answer
441 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 ...
3
votes
4answers
487 views

C# - What does “\0” equate to?

I am playing with Pex and one of the parameters it passes into my method is "\0". What does that mean? My guess is an empty string ("") based on the content of my method. However, if it is the same ...
2
votes
3answers
79 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
1answer
112 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
157 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
194 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
0answers
110 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
532 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 ...
1
vote
1answer
52 views

Visual Studio - Exclude moles files from search

I know Visual Studio allows you to specify what kinds of files you want to search in the find and replace dialog, which works well in general. Generated moles files, however, have a path ending in ...
1
vote
0answers
61 views

Does Microsoft Moles support .NET Compact Framework?

I am currently working on unit tests for a WinCE-based application which uses .NET Compact Framework 2.0. I could like to know, does Moles Framework support .NET Compact Framework 2.0? If not, could ...
1
vote
1answer
188 views

Moles and internal classes

We are using Moles currently to test some code that interacts with a 3rd party library. The library was not setup for testing very well (hence the need for moles) and the issue that I am running into ...
1
vote
0answers
141 views

Why Moles picks up SharePoint.Behaviors for .NET v4.0 when all the rest is v3.5?

I have a ClassLibrary accessing SharePoint 2010 object model as part of a bigger SP 2010 Sandbox solution. All projects target .NET v3.5 (not client profile). Then there's a ASP.NET WebApplication ...
1
vote
0answers
64 views

Moles Generation - Same Class name in Different Name space

This question was originally asked here: http://social.msdn.microsoft.com/Forums/en-US/pex/thread/60972f1f-735a-474e-be84-40cda8006ffa?prof=required. I've recently installed Moles for VS2010. I have ...
1
vote
0answers
259 views

The process cannot access the file because it is being used by another process

I ask this Question because it is Moles specific. Running VS2010 on Windows 7 64bit the VsHost of moles stays in the task manager, causing this message: Unable to copy file The process cannot access ...
1
vote
1answer
81 views

Can't create Mole for System.Environment class

I want to replace behavior of Environment.GetFolderPath in my unittest, but after generation moles for System assembly, System.Moles assembly does not contain definition of type MEnvironment.
1
vote
2answers
103 views

Moles does not show new Method Signatures after Changes in Class

I had class Voo { private static AnotherClass Doo(int id) { //do some stuff with id then return object of AnotherClass return x[0]; } } and used this private with moles ...
1
vote
1answer
100 views

How to call delegate only once / one time with moles?

How is it possible to call a delegated Method only once / one time with moles? MyClass.AllInstances.ResultateGet = delegate { return new ResultatInfoCollection(); }; I want to call the Method ...
1
vote
1answer
134 views

Hooking methods in another process with Moles

I have a C# application compiled with visual studio. I want to intercept and log calls and serialized method parameters to some specific methods in that app. Is it possible to intercept method calls ...
1
vote
2answers
197 views

Has anyone made moles work properly?

I was trying to find a consistent description on how to use moles isolation framework but haven't found much on this topic. So far i did the following: Download moles from here (x86 version). ...
1
vote
1answer
410 views

Moles/VS2010 SP1 Issue - Error 32, exit code -1002 building mstest with Moles 0.94.51023.0

Update 6/20/2011 I can only build the test project once or twice before getting this error. Moles is unusable for me until this is resolved. Deleting obj/bin and closing/reopening visual studio isn't ...
1
vote
1answer
270 views

Moles test completes successfully when debugging tests, but moles host crashes when selecting “run tests”

I have an issue running some moles tests within Visual Studio 2010. Within a test fixture, I have 4 tests - which when I run them in Debug mode, they all work properly. When I run them using "Run ...
1
vote
1answer
419 views

Launching xunit tests from ReSharper under Moles

I have got xunit tests working great; launching them from ReSharper. Now I'm trying to use moles for some test cases. I've got my [Moles] attribute on the test, with a reference to the moles xunit ...
1
vote
1answer
187 views

Can I set expectations on mole types created with Moles?

I need to not only swap implementation but also to add necessary check to make sure that certain methods were called in the right order. I can imagine something like Mole + Mock would give me this ...
1
vote
0answers
259 views

Using MS Moles with datacontext and stored procedures without using a Connection string

I have just begun to work with MS Moles for testing and I have followed the idea/pattern in which jcollum(thanks) uses a Mole for a table in this stackoverflow question here. But I am having a ...
1
vote
1answer
102 views

Parameterized testing tools with automatic code exploration

I've checked and played a bit with Microsoft Pex. It's a very handy tool/library even though it's not as straight forward to write parametrized unit tests with it. But when used correctly it can ...
1
vote
1answer
194 views

can I use the MbUnit gui with Moles tests?

I'd like to set up our unit tests to use Moles -- mostly so we don't write a lot of interfaces in places that don't call for interfaces. Ok, that part is debatable but it is a concern on our team. ...
1
vote
1answer
405 views

How to use Moles to stub entity framework stored procedure call?

I'm trying to stub a call to db. The basic idea is for a line of code like this: Person person = (from p in this.Entities.FindPerson("Smith") select p).FirstOrDefault(); to return an object the way ...
1
vote
1answer
194 views

How to add [assembly: PexLinqPackage] to a test project

I am trying to get Pex to work with linq in my project. I got this explanation on what I need to do: In order for Pex to support Linq, make sure you add a reference to Microsoft.Pex.Linq.dll and add ...
0
votes
0answers
17 views

How to debug “Signature of the body and declaration in a method implementation do not match.”?

I am experiencing a strange problem with moles in combination with one of our assemblies. I get the following error during the build: "Signature of the body and declaration in a method implementation ...
0
votes
1answer
23 views

Does Microsoft Moles Framework generate code coverage

I have a simple test project using Moles and I have check the flag in the test settings to create code coverage but the Moles tests do not generate code coverage. I'm not using Pex. Does Microsoft ...
0
votes
2answers
23 views

No mole class for NativeMethods.cs?

I have a class named NativeMethods.cs which contains all extern methods: internal static class NativeMethods { [DllImport("kernel32.dll", SetLastError = true, CallingConvention = ...
0
votes
0answers
68 views

Unit testing and DB isolation via pex and moles

I have a VS winforms project which has lot of database calls. Whenever i create unit testing, there is more number of methods, taking more time to consume and more number of unit test projects. How ...
0
votes
0answers
11 views

PEX: System.InvalidOperationException: This ExceptionHandlingClause is not a clause

I'm currently having a problem when PEX hits Contract.Result<Uri> in a post-condition, which is causing the same effects as outlined in the following post: ...
0
votes
0answers
30 views

Cannot build moles assemblies — MSIL error while compiling the generated code

I've seen this question before, but it seems there was no answer. I believe this is a very easy reproducable scenario, because it is the second machine where I encountered the problem. OS: Win 7 64 ...
0
votes
1answer
63 views

Moles with InternalsVisibleTo creates “Assembly reference invalid” warning

Another year, another question about Moles. I've got an assembly with an internal sealed class that I'd like to mole in the test project that I use for unit tests. According to the Moles ...

1 2