chevron-thin-right chevron-thin-left brand cancel-circle search youtube-icon google-plus-icon linkedin-icon facebook-icon twitter-icon toolbox download check linkedin phone twitter-old google-plus facebook profile-male chat calendar profile-male
Welcome to Typemock Community! Here you can ask and receive answers from other community members. If you liked or disliked an answer or thread: react with an up- or downvote.
0 votes
I'm using Isolator 5.4.2.0 with TypeMock Productivity also checked in the vs2008 add-in manager. I have a test project which uses Nunit tests ('using NUnit.Framework'), yet no suggestions pop up when coding.

The project has references to TypeMock and TypeMock.ArrangeActAssert, and the class file has 'using' statements for both these libraries.

Could you suggest what I might have to do to enable this functionality?
asked by Meteoroz (600 points)

3 Answers

0 votes
Typemock Productivity add-in should be enabled by default.

Can you send us an example project to typemock.support AT typemock.com so we can check this issue?
answered by dhelper (11.9k points)
0 votes
I'm using the latest version (6.0.7.0) on trial and I cant get intellitest to appear either. The addin is loaded but simple nothing happens inside my MS unit tests.

Need to get it work asap to demo to my boss in order to purchase.

I have disable most other addin, only Resharper left and still doesnt appear.

Using Visual Studio 2010 SP1.
answered by solidstore (3.2k points)
0 votes
IntelliTest suggestions should appear on method arguments (and constructors). Consider, for example, the following:

public class Greeter
{
  public void Greet(Person p)
  {
     p.SayHi();
  }
}

public class Person
{
  public void SayHi()
  {
     Console.WriteLine("Hello!");
  }
}

[TestClass]
public class MyTests
{
  [TestMethod]
  public void Test1
  {
    Greeter g = new Greeter();
    g.Greet(|); // <-- IntelliTest suggestion should appear here
  }
}


If IntelliTest does not appear in the Greet method, then it might be due to a bug :(

I have sent you an email, I'd like to have a look at this via an online session, if possible.
answered by igal (5.7k points)
...