Tagged Questions

32
votes
6answers
4k views

What are the capabilities of Moq and Rhino.mocks?

I cannot find a specific feature-by-feature comparison of Moq and Rhino. All the questions are "which do you like better and why", or "here's how you do a simple mock in rhino and how it's done in ...
1
vote
1answer
112 views

Convert NMock2 test to Moq

I'm new to unit testing and mocking. I have to convert unit tests in my current project with using Moq. Currently tests are using Nmock2. Can you help me with converting this code (using of ...
1
vote
1answer
184 views

Help with some mocking

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 ...
0
votes
0answers
43 views

Have NMock2 to create instance of a Type

I have this situation: A method that expects a Type as one of its parameter; This Type must be a Type that implements an Interface in the project; I need to write tests for this method; I'm using ...
0
votes
1answer
180 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 ...