Microsoft Fakes is an isolation framework for creating delegate-based test stubs and shims in .NET Framework applications.

learn more… | top users | synonyms

20
votes
4answers
6k views

Mock framework vs MS Fakes frameworks

A bit confused on the differences of Mock frameworks like NMock vs the VS 2011 Fakes Framework. Going through MSDN, what I understand is that Fakes allow you to mock your dependencies just like ...
17
votes
2answers
8k views

How do I add a fakes assembly in VS 2012 Professional RC?

According to the two articles below on VS 2012 and Microsoft Fakes Test Framework, I should be able to right click on an assembly in my test project's references and choose "Add Fakes Assembly" to ...
11
votes
1answer
2k views

Can Microsoft Fakes be used in Visual Studio 2010?

We have developers using Visual Studio 2010 professional and some trying out Visual Studio 2012. Project compatibility between the two versions has been good. Will a Visual Studio project still be ...
9
votes
3answers
2k views

Error “The type or namespace xxxx does not exist” when compiling Moles in Visual Studio 2012

I am attempting to compile an existing project (targets .NET4) developed in Visual Studio 2010 and now testing migration to VS2012. When I compile my existing project with moles, I get the following ...
7
votes
1answer
804 views

ShimNotSupportedException when running tests from MSTest or Resharper

I am currently working with Microsoft Visual Studio 2012 and the new Fakes framework. And after adding my unit tests to the MSBuild and continuous integration process, the Fakes unit tests happen to ...
5
votes
1answer
318 views

How does one refer to a stub which has a generic parameter of itself using Microsoft Fakes?

I'm using Microsoft Fakes in some unit tests I'm working on. My interface looks like this: interface ISecuredItem<TChildType> where TChildType : class, ISecuredItem<TChildType> { ...
5
votes
4answers
762 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 ...
4
votes
1answer
113 views

Does Microsoft Fakes support abstract methods on a shim?

I have a class setup in the following manner: public abstract FooClass { public FooClass() { // init stuff; } public void RandomMethod() { // do stuff; } public ...
3
votes
3answers
457 views

How can I verify that a Microsoft Fakes (beta) stub/shim was called (like AssertWasCalled in Rhino Mocks)?

I'm using the beta of Microsoft Fakes in Visual Studio 11. How can I verify that a dependency's method was called by my system under test?
3
votes
1answer
216 views

How can I easily replace a Microsoft Fakes assembly?

It's easy to add a Microsoft Fakes assembly to a test project: just right click on the parent assembly in the references section and choose "Add Fakes Assembly". However, when the parent assembly ...
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 ...
3
votes
2answers
241 views

Microsoft Fakes x64 not x86 and v4.5

I'm using the Microsoft Fakes testing framework. There's not much way around it as I need to use the shim/moles approach due to "legacy" code that I cannot change. It's code from a vendor with no ...
2
votes
2answers
208 views

TDD with MS Fakes

I'm going to try TDD and I'm researching right tools for that. At work we are using MS Fakes so it would be fine not to change it and use MS Fakes with TDD. But I have one serious problem. It seems to ...
2
votes
2answers
523 views

How do I remove a Fakes assembly from a Visual Studio 2012 project?

I've added a Fakes assembly to a Visual Studio 2012 C# unit test project, via the "Add Fakes Assembly" reference context menu option. What's the procedure to completely remove the Fakes assembly, i.e. ...
2
votes
1answer
97 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: ...
2
votes
1answer
140 views

How do I get shims for base classes using Microsoft Fakes?

class Parent{ public string Name{ get; set; } } class Child :Parent{ public string address{ get; set; } } [TestClass] class TestClass{ [TestMethod] public void TestMethod() { ...
2
votes
1answer
219 views

Mocking Azure RoleEnvironment API with Microsoft Fakes

I'm trying to mock the Azure RoleEnvironment API with Microsoft Fakes. The problem is that I can't find a way to arrange the shims/stubs so that I can exercise the code in a unit test. For instance, ...
1
vote
1answer
623 views

How to mock/isolate internal classes in VS 2012 with Fakes Framework shims?

So, the issue is that I have a bunch of internal classes in my assembly that are used by the class I want to test. Since accessors have been removed from VS2012, I'm fine with using ...
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 ...
1
vote
2answers
335 views

Is there any best practice/guidelines available for using Code Contracts, Pex and 'Fake' framework?

Is there any best practice/guidelines available for using Code Contracts, Pex and Fake framework? Not able to find something concrete available with all 3 combined.
1
vote
2answers
351 views

Is mocking functionality available for Microsoft Fakes?

With the inclusion of Microsoft Fakes in Visual Studio 11, I thought it would be worth to look into again, since I did not find Moles mature enough last i checked. The documentation is still sparse, ...
1
vote
1answer
32 views

Shim Custom Dictionary

I have created a class which is an extension of the dictionary class, which looks as follows: public class PKMRelations : Dictionary<Guid, PKMRelation>, IDisposable I now want to shim the ...
1
vote
2answers
208 views

Is it OK to use MS Fakes shims with NSubstitute mocks?

We are using NSubstitute to mock external objects for our unit tests. However many legacy classes are not called via interfaces and can't be easily replaced with mocks. I've considered to use ...
1
vote
1answer
203 views

Unit testing WebMatrix.WebData with Microsoft Fake Framework MVC4

I can't test any logoff, login, register action from AccountController with the new Microsoft Fake Framework without having this error message: System.Security.VerificationException: Operation could ...
1
vote
1answer
157 views

Build Machine Unit Tests

What are the requirements to run automated builds through TFS, where the solution contains unit tests that use the Microsoft Fakes framework? I have a build machine working now with VS 2010 and .NET ...
1
vote
1answer
302 views

Mocking ASP.NET MVC Controller properties

I have a MVC controller that loads a resource file and uses Server.MapPath to get the path to the file. I want to mock out the Server property in the controller object using Microsoft Fakes framework ...
1
vote
1answer
199 views

Why there are no stubs for interfaces in Microsoft.Fakes

I'm about to use Microsoft.Fakes in my unit tests. I read a tutorial where Microsoft.Fakes creates a stub for an interface (implementred inside the solution), but in my solution stubs are available ...
1
vote
2answers
452 views

Can't build project with Fakes assembly

I've added a Fakes assembly to my Visual Studio 2012 unit test project, corresponding to my application project (the System Under Test), as described in Peter Provost's article. However, the project ...
1
vote
2answers
551 views

How to Isolate (detour) constructor of class with Microsoft Fakes Shim?

Is there a possibility to isolate / replace an constructor of a class with Microsoft Fakes? In found an example for Mole (antecessor of Fakes): ...
1
vote
0answers
46 views

How to shim HttpWebRequest

I have a problem trying to shim HttpWebRequest. If you just add a fakes assembly of the System assembly it doesn't work instantly. However if you change the fakes file and add the specific namespace ...
1
vote
1answer
45 views

Unit testing DB repositoty class under lots of static helpers

I started to work on partially finished MVC web-project and my task now - to cover code by unit tests. Project has DB storage and non-static Repository class containing CRUD operations. To test these ...
1
vote
1answer
98 views

Microsoft mocks and mocking out SqlConnection for integration testing

I have various web services which talk to each other, sometimes making database calls and some which talk to a message queue, but I'd like to be able to test the services interacting with one another ...
1
vote
1answer
432 views

Can't add Fakes assembly of Microsoft.Practices.EnterpriseLibrary.Logging on VS2012 Update 1

After installing VS2012 Update 1 I'm unable to create fake assembly for Microsoft.Practices.EnterpriseLibrary.Logging.dll reference. However fakes assemblies for ...
1
vote
1answer
888 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 { ...
0
votes
2answers
713 views

vs 2012: Shims compile

I am trying to make a shim in VS 2012 ultimate as it described in MSDN site: [TestClass] public class TestClass1 { [TestMethod] public void TestCurrentYear() { int fixedYear = ...
0
votes
1answer
150 views

Can I fake HttpContent.ReadAsAsync<T>?

Is it possible to create a stub that implements HttpContent.ReadAsAsync<T> with the help of Microsoft Fakes (in Visual Studio 2012)? If so, how?
0
votes
1answer
411 views

microsoft fakes only stub static property of a static class

Is it possible to shim a static property in a static class using Microsoft Fakes framework? If not, Why would a stub work, but not a shim? Here is my class code: public static class Globals { ...
0
votes
1answer
351 views

Using Microsoft Fakes to Shim a method with ref parameters

I have a static method with ref parameters in my legacy (untestable) dll. I am trying to write unit tests for a class that calls into this method. public static class Branding { ... ... ...
0
votes
3answers
542 views

Ms Fakes Framework, NotSupportedException

Why does this code throw ShimNotSupportedException in operator? ShimStreamReader.AllInstances.EndOfStreamGet = ((s)=>calls < 1); [TestMethod] public void GetAllLinesFromFile__() ...
0
votes
2answers
107 views

Unity + Interception + Fakes = Big Ball of Fire

I am having trouble with making Unity play nice with the new Fakes framework (formerly pex & moles) When I tried to create fakes of the unity interception library, it caused my unit test to run ...
0
votes
1answer
394 views

Microsoft Fakes (Shims and / or Stubs) on a c# method with SQL code

I'm trying to do some some learning around Unit Testing (using out-of-the-box functionality (i believe it is MSTest.exe) and Microsoft Fakes (stubs and Shims). I'm using Visual Studio 2012 Ultimate ...
0
votes
1answer
223 views

How to resolve method name conflict in VS2012 Fakes framework

I am using VS2012 Fakes and MSTEST framework to do unit test. I have a third party dll and I need to fake it. However there is a method (getItemAt(int)) in the dll that seems to conflict with a method ...
0
votes
1answer
11 views

TFS Fails to build a project containing Microsoft Fakes

After adding Fakes framework to the test project after each check in I get the following error: Error 33 The last access/last write time on file "XYZ.1.5.5.0.Fakes.dll" cannot be set. Access to ...
0
votes
0answers
15 views

Warning MSB3270 in Fakes projects

After migration to VS2012 (Update 2) and using Fakes, MSBuild began to show a new warning: There was a mismatch between the processor architecture of the project being built "MSIL" and the processor ...
0
votes
0answers
83 views

Creating Fake object to mock out GetHashCode

I have the following class (irrelevant portions removed)... public class XElementComparer : IEqualityComparer<XElement> { private readonly string m_nodeNameToCompare; public ...
0
votes
1answer
85 views

how to use microsoft fakes with a web service proxy?

I'm trying to write some unit tests for an existing order sending routine: this routine extract an order using entity framework, map the data from the ef classes to the routines exposed by the ...
0
votes
0answers
51 views

Can i use Microsoft Fakes to “shim” .net function calls in a 3rd party executable?

MS Fakes can be used to redirect function calls to stub or shim functions in your vs project which you have the src code to but i was wondering if it can be used for debugging purposes to shim ...
0
votes
0answers
74 views

MS Fakes - The extern alias was not specified in a /reference option

I have a silverlight solution and I'am trying to create a fakes assembly for System.Windows.Controls.Data.DataForm.Toolkit (to play with DataForm). After I add the fakes assembly I get the following ...
0
votes
0answers
91 views

Microsoft Fakes generator fails to load PCL .dll

To support testing in a Windows Store MVVM application, I've split the Models and ViewModels out into a separate PCL targeting Windows Store and .NET 4.5 only. I have a .NET 4.5 unit test project ...
0
votes
0answers
39 views

Arrange two shims gave the wrong result, Faking System.IO

Hi I am having issues with the following code trying to test my snippet using Microsoft Fakes My Snippet: public void MyMethod(ITarget primaryTarget, TargetCollection targets, RuleResult result) ...

1 2