Typemock Isolator is a mocking framework used in unit testing .NET and unmanaged C++ code.
0
votes
2answers
46 views
Why does TypeMock MockManager need a Verify() and Init() and MOQ not
I use MOQ alot and never had the need to call a Init() in my SetupForEachTest method and a Verify() in my CleanUpForEachTest method.
Why does MOQ need that not ?
Where is the technical difference?
0
votes
0answers
27 views
typemock with linq functions inside fake with Members.MustSpecifyReturnValues
If I have a typemock test that fakes an instance where the members must specify return values such as below:
WallLayers layers = ...
0
votes
1answer
100 views
“Could not load file or assembly 'TypeMock.Interceptors, Version=0.0.0.0”
We have just upgraded Typemock from 6.0.2.0 to Typemock 7.3.0.0. And we now get the following error at runtime:
[System.IO.FileNotFoundException] = {"Could not load file or assembly ...
2
votes
1answer
81 views
Typemock fake collection handling
foreach (BeamCluster cluster in executionContext.RevitModel.Beams
.Where(b => b.Walls.Values
...
0
votes
1answer
81 views
Typemock Isolator - how to mock a property that returns a non-hard coded value
Is it possible in Isolator to return a non-hardcoded value for a (read only) property?
It appears that this isn't possible without swapping out the faked object with a new instance of a concrete ...
0
votes
1answer
56 views
TypeMock to fake DateTime.Parse
I need a way to fake DateTime.Parse with Typemock and have it return the same date when called with any parameters.
I have a DB field that stores an encrypted string that is parsed as date when ...
0
votes
2answers
53 views
TypeMock and mscorlib
Does anyone know if the current version of TypeMock can intercept mscorlib?
I'm looking for a replacement for Moles. The main reason for this is due to legacy code. I know of several mocking tools ...
2
votes
2answers
189 views
How to hide Typemock Auto-Runner's shields that are all over the Visual Sutdio editor?
Is there a way to hide the huge symbols that Typemock Isolator adds to the Visual Studio editor window once installed - the orange shield at the top and the orange/green shields near each method? I ...
3
votes
1answer
127 views
Error trying to run nunit tests with TypeMock in LINQPad
I love LINQPad and use it daily. I have been trying to find a way to create and run ad-hoc tests with nunit and TypeMock in LINQPad for a while.
So I stumbled around and got some results, but some ...
1
vote
2answers
229 views
Mocking static functions using TypeMock
I am trying to mock static functions in my project. I am unable to do this using Rhynomocks hence trying to mock static functions using Typemock.
They say it is possbile to mock static function using ...
0
votes
1answer
122 views
Is TypeMock only solution when working in brownfield development?
I am starting a maintenance project where I need to work with legacy code and also create new ones. New ones I can create proper interface based development and I can use Moq to do proper unit ...
0
votes
1answer
124 views
TypeMock in an integration/regression test suite
I need to run an integration/regression test suite for our application and the application is supposed to behave differently at different times of the day. I cannot change the system time since other ...
1
vote
1answer
119 views
How to start build use TypeMock ?
i use typemock for unit test. how to start build use typemock.
can i only use typemock and msbuild ? otherwise should i use nunit-console.exe ?
when I start up build with unit test...
where is the ...
0
votes
1answer
172 views
Typemock Auto-Deploy and Build Definition Errors
I'm hoping there are some Typemock guru's which can help with the following error.
We’re currently testing Typemock’s (v7.0.6) auto-deploy feature as part of a TFS 2010 build. One issue I’d like to ...
1
vote
3answers
282 views
How to write Unit Test for a method that accepts an xml filepath as a parameter
I know that the unit test should be isolated from any dependencies. I am trying to write unit tests for an application using Typemock. Issue is one of the methods in a class accepts a couple of Xml ...
2
votes
1answer
183 views
TypeMock 7 and Build Server Configuration
We want to upgrade our build servers to run our typemock tests, but I'm having a bit of trouble getting it configured correctly and finding the correct information regarding this. Our setup is a ...
2
votes
2answers
242 views
Typemock Isolator: Mock a dependency that's not injected?
My WidgetDoer class depends on Foo, which is not injected. I need to fake _foo's implementation of DoStuffWith() (and then verify that Do() returned the result -- this is a simplified representation ...
2
votes
1answer
183 views
How to make TypeMock Ignore All MessageBox
I have this annoying method which pop up a MessageBox. So when I try to test it I want to do something like this.
/// <summary>
/// A test for LoadConfig exception
/// ...
2
votes
1answer
234 views
Unit Testing Sharepoint object UserProfileManager
I'm driving crazy here with this exception I'm getting. I'm unit testing a Sharepoint 2010 project with Typemock Isolator and Nunit. What I'm trying to mock is the UserProfile collection for a ...
2
votes
1answer
648 views
Typemock vs Moq [closed]
I have heard/read a little about both of these frameworks and have decided I want to use of of the two. Which is better? Why?
Thanks in advance!
Oshiwoshydopaliscious
1
vote
1answer
150 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
3answers
210 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 = ...
-1
votes
2answers
260 views
Mocking .nettiers DataRepository calls
I have a project in which I am using .nettiers generated code as my DAL.
At the moment, my tests consist of physically setting up test data in the database for each test, then allowing the nettiers ...
0
votes
2answers
581 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
319 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() ...
2
votes
1answer
360 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 ...
0
votes
1answer
198 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
365 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>();
...
1
vote
2answers
639 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
114 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 ...
1
vote
1answer
75 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
306 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 ...
2
votes
1answer
76 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
{
...
0
votes
1answer
392 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();
...
1
vote
2answers
582 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
136 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 = ...
5
votes
3answers
2k 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 ...
1
vote
1answer
375 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 ...
9
votes
4answers
1k views
Open Source / Free alternative of Typemock Isolator
Is there any F/OSS alternative of Typemock Isolator .NET?
2
votes
2answers
893 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 ...
6
votes
1answer
439 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?
1
vote
2answers
159 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 = ...
4
votes
1answer
737 views
JustMock vs. TypeMock vs. Other [closed]
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 ...
1
vote
1answer
253 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 ...
6
votes
1answer
999 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 ...
12
votes
4answers
964 views
Typemock - Worth the money? [closed]
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 ...
0
votes
1answer
781 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 ...
1
vote
1answer
230 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
702 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 = ...
6
votes
4answers
4k 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 ...

