The nmock2 tag has no wiki summary.
0
votes
0answers
21 views
How to mock a method in the same class in NMock?
I'm using Nmock2 to mock objects for my Unit Tests.
public IGlobalValidationRules GetJsonData()
{
StreamReader reader = ...
0
votes
1answer
70 views
Why does a mocked method swallow exceptions?
Current Implementation:
void IFileManager.DeleteFile(
string argFilename )
{
throw new ArgumentException( "Specified filename was not found" );
}
Unit Test
Expect.Once.On( m_MockFileManager ...
2
votes
1answer
126 views
How to NMock FileStream?
I have this code in my unit test:
var file = m_Mockery.NewMock<IFile>();
Stream s = new MemoryStream();
Expect.Once.On( file ).Method( "OpenRead" )
.With( "someFile.mdb")
.Will( Return.Value( ...
1
vote
1answer
96 views
Convert UT in NMock2 to Moq. Also, what does .Will() in NMock2 stand for?
I am new to NMock2 and Moq frameworks. I need some help converting NMock2 code in my current project to Moq code:
var myMock= myMockery.NewMock<IMyInterface>();
var myRoleMock = ...
0
votes
1answer
80 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 ...
1
vote
1answer
173 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 ...
0
votes
2answers
390 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 ...
3
votes
2answers
573 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
731 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 ...
2
votes
1answer
238 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
...
2
votes
2answers
961 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 ...
2
votes
2answers
999 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..
...
1
vote
1answer
250 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
267 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>();
...
41
votes
5answers
5k 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 ...