Tagged Questions

Typemock Isolator is a mocking framework used in unit testing .NET and unmanaged C++ code.

learn more… | top users | synonyms

56
votes
18answers
12k views

Rhino Mocks, TypeMock, Moq, or NMock? Which one do you use and why?

Which one do you use (if you use the listed ones) and what do you love and even hate about it?
32
votes
6answers
4k views

What are the capabilities of Moq and Rhino.mocks?

I cannot find a specific feature-by-feature comparison of Moq and Rhino. All the questions are "which do you like better and why", or "here's how you do a simple mock in rhino and how it's done in ...
14
votes
6answers
4k views

Rhino mock vs Typemock vs JustMock vs

I need to choose mock framework to new project. What are the pros and cons for those frameworks? Any comparison table? I know that JustMock is i beta stage but it's look very good right now (very ...
8
votes
4answers
534 views

Typemock - Worth the money?

I know that this is a subjective question... Typemock is $799 per developer. Licences for 5 devs comes up to a pretty large sum. If someone here used Typemock and given that there are open source ...
8
votes
3answers
274 views

Mocking filesystem

If my unit tests rely on the file system and I need to mock this, what is the best way to go about this? Thanks
7
votes
2answers
472 views

Any teams out there using TypeMock? Is it worth the hefty price tag?

I hope this question is not 'controversial' - I'm just basically asking - has anyone here purchased TypeMock and been happy (or unhappy) with the results? We are a small dev shop of only 12 ...
7
votes
4answers
5k views

RhinoMock vs. TypeMock vs. NUnit's Mocking?

I am just starting to do Test Driven Development, and I am wondering the major differences between RhinoMock, TypeMock, and NUnit's built-in mocking? Any information would be greatly appreciated!
6
votes
1answer
314 views

How to mock everything?

I understand how to mock interfaces or virtual method calls. But frameworks like TypeMock can mock everything in the framework. Which .NET mechanisms are used to provide such functions?
5
votes
1answer
503 views

How does “Typemock Isolator” mock static methods?

As some of you will know, it is generally not possible to mock a static method in .net. By mocking, I mean to replace a method in a class with another method with the same signature, usually for ...
5
votes
3answers
3k views

Moq - How to mock a function call on a concrete object?

How can I do this in Moq? Foo bar = new Foo(); Fake(bar.PrivateGetter).Return('whatever value') It seems I can only find how to mock an object that was created via the framework. I want to mock ...
5
votes
2answers
1k views

Mocking non-virtual methods in C#

I'm trying to test some classes I've made using mocks, but I've seen all free mocking frameworks in c# aren't able to mock non-virtual methods (if it is not in an interface). But, there's TypeMock ...
4
votes
3answers
2k views

EF4 - possible to mock ObjectContext for unit testing?

Can it be done without using TypeMock Islolator? I've found a few suggestions online such as passing in a metadata only connection string, however nothing I've come across besides TypeMock seems to ...
4
votes
3answers
455 views

Is Typemock the only framework that can mock a Linq To SQL Table class?

I am trying to setup unit tests for my Linq To SQL code. My code uses the System.Data.Linq.Table class (generated by the designer). Because this class is sealed and the constructor is internal it is ...
3
votes
3answers
761 views

TypeMock VS JustMock (VS RhinoMock,Moq…): current situation in 2011?

I've started TDD some weeks ago. I have to do Unit Tests on a C# code full of non-virtual methods and there is no much interface either. Therefore, after I've been studying RhinoMock and Moq, a proxy ...
3
votes
3answers
364 views

Open Source / Free alternative of Typemock Isolator

Is there any F/OSS alternative of Typemock Isolator .NET?
3
votes
3answers
423 views

Partcover and Typemock integration

I was wondering if someone has some ideas about how to integrate typemock and partcover. We have unit tests which use typemock in our c# sharepoint based application and we would like to run them via ...
3
votes
1answer
301 views

Mocking non-virtual Events (In COM interop classes)

Edit: Language/Platform is C# / .Net I'm currently trying to fill a vast unit-test void in my current project, and being admittedly new to TDD, find myself quite stumped as to how to go about testing ...
2
votes
1answer
48 views

TypeMock strange behavior

I found a strange behavior using typemock for unit testing - internal class MyClass { public static int foo(int param) { return param; } } [TestClass] public class UnitTest1 { ...
2
votes
1answer
470 views

JustMock vs. TypeMock vs. Other

With Telerik's JustMock product newly available, it has a lot of similarities to TypeMock, in the ability to mock concrete classes, not just abstract classes or interfaces. I was just curious your ...
2
votes
2answers
185 views

RhinoMocks and Heisenbugs

I've been using RhinoMocks lately but I keep running into an issue. If I break into the debugger and step over code while a mock is in Record mode, I end up getting an exception along the lines of: ...
2
votes
2answers
849 views

NMock2.0 - how to stub a non interface call?

I have a class API which has full code coverage and uses DI to mock out all the logic in the main class function (Job.Run) which does all the work. I found a bug in production where we werent doing ...
2
votes
4answers
815 views

Is Mocking able to replace functionality wrapped inside a method?

I'm trying to define a way to simulate an case on accessing into a database without accessing... That's probably sounds quite crazy, but it's not. Here is an example about a method i would like to ...
2
votes
4answers
212 views

Isolating Dependencies Without Inversion Of Control

I'm working on an enterprise application that relies heavily on message queues, com+, databases, httpcontext, static utility classes etc. Since there's 600 projects in our system it seems impractical ...
1
vote
1answer
142 views

unit testing legacy code: limits of “extract and override” vs JustMock/TypeMock/moles?

Given the following conditions: a very old, big, C# legacy code base with no testcoverage whatsoever (almost) every class derives from some interface nothing is sealed What are the practical ...
1
vote
1answer
39 views

Inject Mocking using TypeMock

I using Ioc pattern(Ninject) in my application. I want make a test case (using TypeMock) to testing Ioc pattern(Ninject). but I don't know how to mock object which creating using Ninject. Kindly let ...
1
vote
1answer
87 views

Fake classes using TypeMock

We are migrating from MOQ to Typemock. In MOQ we've a functionality of getting a proxy class from the interface, we want to achieve the same from typemock. Actually our requirement is something like ...
1
vote
2answers
134 views

Overriding previously set function behavior of Typemock Isolator (WillThrow()/DoInstead())

Please check out this code: public UserRepository GetUserRepositoryMock() { // mock all UserRepository instances. var userRepositoryMock = ...
1
vote
1answer
74 views

Running Unit Test having Operation could destablize the runtime exception at new StandardKernel

In our unit tests where it first load db setting from a singleton class, we have: IKernel kernel = new StandardKernel(new OurInfrastructureNinjectModule()); _myService = ...
1
vote
1answer
213 views

How to fake a datacontext method with TypeMock Isolator

I want to test a class that uses Linq to SQL. I have faked the datacontext with TypeMock Isolator, but the datacontext also has a function that I don't know how to fake. This function is used in Linq ...
1
vote
2answers
496 views

Getting TeamCity to run NUnit tests, with both NCover and TypeMock integrated?

Basically I'd like to use the NUnit plugin for TeamCity (the program, not necessarily the specific build step using it) to run my unit tests, with NCover for code coverage, and since my unit tests ...
1
vote
2answers
97 views

Setting up behavior on a method appears to be calling the method

I posted this on the TypeMock forums, but am too impatient to wait for a response there. This is a very n00b question. I'm trying to set up a fake IContainer. Here's what I have: var container = ...
1
vote
1answer
188 views

Silverlight Unit tests can't be run (using ReSharper or NUnit): dependency error appears

CThru.Silverlight can't find dependent libraries Typemock.Isolator.VisualBasic & Typemock.ArrangeActAssert of Version=6.0.2.0 but there are versions 6.0.3.0 of these libraries registered. Any ...
1
vote
1answer
352 views

Mocking Autofac's “Resolve” extension method with TypeMock

I'm trying to mock an Autofac resolve, such as using System; using Autofac; using TypeMock.ArrangeActAssert; class Program { static void Main(string[] args) { var inst = ...
1
vote
2answers
745 views

How to assert a private method on concrete class is called (TypeMock/NMock/etc..)?

I am trying to write a unit test for the 'IsUnique' function in the class below that looks like this: class Foo { public bool IsUnique(params...) { ValidateStuffExists(params); ...
1
vote
5answers
140 views

How can I measure the overhead of a mocking framework (TypeMock)?

I'm just beginning to evaluate mocking frameworks for my team and am wondering if anyone has any pointers to reference documentation or experience that you can share regarding the cost of mocking when ...
1
vote
4answers
154 views

bypass dispose for testing

Hi I'm trying to test a method. I want to ensrur that there is a method call in that method (calling service) the code look like this: using(proxy = new Proxy()) { proxy.CallService(); } I ...
1
vote
3answers
482 views

Unit Testing: TypeMocking a singleton

I'm using TypeMock Isolater to mock up some objects for some unit tests - attempting to use the AAA api (so the Isolate calls). I have a straightforward singleton class where you call a static ...
1
vote
1answer
317 views

Why doesn't ExpectConstructor() cause this test to fail?

I'm a little confused as to the purpose of the ExpectConstructor() method on the Mock class in TypeMock 3.5. I would have thought that calling ExpectConstructor would cause the MockManager to fail ...
0
votes
1answer
18 views

TypeMock Isolator and TFS2010 team build

Can anyone point me at a decent walkthrough regarding getting Typemock 6.2 to play nice with TFS workflow? I've tried to follow the Release Note.doc document, but it just doesn't sense. Note I'm ...
0
votes
4answers
71 views

TypeMock 6.0.4.0 behaves differently on different boxes

Help! This code works fine on my local VS2010 with TypeMock, however fails on our build server, when ran through NCover. My code: using (RecordExpectations expect = ...
0
votes
2answers
122 views

Convert IDataReader to SQLDataReader

Is there a way to convert IDataReader object to SqlDataReader object? I am trying to break database dependency to one of API, by intercepting SqlHelper by with my own IDataReader (since I can't create ...
0
votes
1answer
77 views

TypeMock: Mocking class with fake values

Hi all, I have a class "Abc", in which I have some read only property (Context). In constructor of "Abc" class I am setting value to read only property using a private variable (_context). e.g Abc() ...
0
votes
1answer
69 views

Mocking SPServer.Local

I want to be able to mock the object that is returned by SPServer.Local but I can't seem to do it in typemock. At the moment when I debug, I see that SPServer.Local returns a null object of type ...
0
votes
1answer
65 views

Verify that a method with particular parameters was not called using TypeMock

I am using Typemock for some of my unit tests. I have mocked static class Widget. I want to mock the return of Widget.GetPrice(123) to return value A. Isolate.Fake.StaticMethods<Widget>(); ...
0
votes
2answers
195 views

Curious problem with NUnit and Typemock

Using VS 2010, NUnit, Typemock, Entity Framework... I am having a bit of an odd problem using NUnit/Typemock. I am relative new to the testing world so it could be a beginners mistake. This is the ...
0
votes
1answer
61 views

Mocked object set to true is being treated like it is false

I have a unit test (using typemock 5.4.5.0) that is testing a creation service. The creation service is passed in a validation service in its constructor. The validation service returns an object ...
0
votes
0answers
164 views

Moles to mock an indexed property

I am looking for a way to 'detour' a single item in a configuration file with Moles. I can do this: NameValueCollection appsettings = new NameValueCollection(); ...
0
votes
1answer
112 views

Swapping parameters with typemock

I am coding some unit tests and wondered, is it in the duty of Typemock to replace paremeters? For example, I have a method which relies on an object and in this object's constructor are some ...
0
votes
1answer
536 views

Silverlight unit testing. Error while running tests

I'm using VS2010. Silverlight 4, NUnit 2.5.5, and TypeMock TypemockIsolatorSetup6.0.3.619.msi In the test project MVVM is implemented, PeopleViewModel is a ViewModel which I want to test. Please ...
0
votes
2answers
337 views

Using TypeMock Isolator.Swap.AllInstances<T> in a Visual Studio Load Test?

I have the following tests setup. [TestClass, Isolated] public class TestClass { public TestClass() { } private TestContext testContextInstance; public TestContext TestContext ...

1 2