Tagged Questions
The nmock2 tag has no wiki summary.
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 ...
3
votes
2answers
205 views
How to unit test class that reads xml file?
I need to write a unit tests for a class that reads a xml file and parses it's content.
How can I Mock the file reading ? Because all the content of the tests should be against read file .
I use ...
1
vote
1answer
111 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
369 views
Nmock2 and Event Expectations
Im in the process of writing a test for a small application that follows the MVP pattern.
Technically, I know I should have written the test before the code, but I needed to knock up a demo app quick ...
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
...
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
483 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
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 ...
0
votes
1answer
160 views
How test SqlParameter for equality
Using NUnit and NMock2 I was not able to compare what I thought were the same SqlParameters:
SqlParameter param1 = new SqlParameter("@Id", 1);
SqlParameter param2 = new SqlParameter("@Id", 1);
...
0
votes
2answers
153 views
How to check property of function argument in NMock
Say if i had the following interface mocked in (NMock). How could i check that email.Subject = 'xyz' ?
Currently im doing something like
IEmailService s = mocks.NewMock<IEmailService>();
...