Tagged Questions

3
votes
2answers
218 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
190 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
46 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
189 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
2answers
157 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>(); ...