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.