Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Please advise on the easiest learning path, as well as simple mocking library to start with.

share|improve this question

5 Answers

up vote 13 down vote accepted

Try Stephen Walther's excellent article here:

http://stephenwalther.com/blog/archive/2008/03/23/tdd-introduction-to-rhino-mocks.aspx

EDIT: And I would advise that you do start with Rhino mocks as it does seem to the be the current defacto standard.

share|improve this answer
The only thing I would say against that article is that it's quite old and so uses the record-replay syntax that I find much harder to use (and pick up) than the AAA style. – Garry Shutler Feb 19 '09 at 14:22
@Garry Shutler - That's a good point. Here's a link to the new style syntax: ayende.com/Blog/archive/2008/05/16/… – Iain Holder Feb 19 '09 at 14:30

I'm actually trying to get up to speed with mocking myself, and I've found that MOQ seems to be a little more intuitive than Rhino Mocks (if you're comfortable with lamdas and are using .NET 3.5).

Phil Haack compairing MOQ with Rhino Mocks: http://haacked.com/archive/2008/03/23/comparing-moq-to-rhino-mocks.aspx

Quick Start page on Google Code: http://code.google.com/p/moq/wiki/QuickStart

share|improve this answer
1  
+1 for Moq, especially if you are familiar with or want to become more familiar with lambdas. – flipdoubt Feb 19 '09 at 14:40
I think Moq is generally a diversion before you have to suck it up and move on to Rhino mocks anyway. – Iain Holder Feb 19 '09 at 16:16

I would strongly recommend using Rhino Mocks. It is, in my opinion, the best and easiest to use mocking framework out there.

It has support for the Arrange-Act-Assert syntax which for me is the most logical way of setting up and using your mock objects. This article is a decent primer on how to use it.

share|improve this answer

Perhaps you should try NMock.

share|improve this answer
string mockingStatement = "You've got a face like a bulldog licking p!ss off a nettle!";
Response.Write(mockingStatement);
share|improve this answer
+1, except it won't compile! mockingStatemnet, undeclared identifier ;) – Adam Naylor Feb 19 '09 at 14:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.