I was trying to mock an interface and I got the next expection:

System.TypeLoadException: System.TypeLoadException: Signature of the body and declaration in a method implementation do not match

I figured out later that my problem was a function that I have defined in my interface:

IList<T> GetAll<T>() where T : class, new();

Please could you tell me how to define the class so it would work with nmock2? Thanks in advance

link|improve this question

I don't know anything about nmock2, but it might help to show some code of how you're using it in your tests. – Patrick Steele Feb 14 '10 at 16:58
"Just don't pay any attention to those boys, dear, they're just jealous" ;-) – Scott Smith Feb 14 '10 at 23:44
feedback

1 Answer

up vote 1 down vote accepted

the problem was my nmock2 version, I had 2 and when I replaced it with 1.x it worked.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.