Tagged Questions

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
110 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
2answers
481 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
40 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); ...