Tagged Questions
1
vote
1answer
637 views
Differences between NMock 2.0 and NMock2
I am a bit confused over which version of NMock2 I should use. The one I've been using for a while I got from here:
http://www.nmock.org/download.html
The filename is NMock2.dll with version ...
1
vote
2answers
479 views
NMock - how to say expect 'any value' on these params? Or should I not do this?
I have a quick question that I could not figure out in the docs about NMock2.0.
I have a function called Save() that I want to mock out. This takes a string ID as parameter and a decimal as value..
...
0
votes
1answer
179 views
How can I mock an internal interface using NMock2?
If I try this, I just get an exception:
System.TypeLoadException : Access is denied: 'Namespace.IInternalInterface'.
Making the interface public is not an acceptable solution. I don't want to ...