Tagged Questions

1
vote
1answer
18 views

NMock - how to say expect ‘any value’ on these params? Or should I not do this?

Hi, 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 …
0
votes
1answer
33 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
1answer
14 views

How to check property of function argument in NMock

Hi, 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 = …
0
votes
0answers
42 views

Creating a mock DAO object that returns my Entity class for testing?

I'm looking for a little jump start with mock objects. I have a class called ProjectDAO that has a method called 'GetById' that will load and return a 'Project' object after tripping to the database. …
12
votes
5answers
884 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 …