views:

89

answers:

2

Does any know or use and good resources for TTD with ASP.NET MVC specifically with Rhino Mocks.

  1. Do you prefer any other Mocking Framework?

My choice on Rhino Mocks is simply because it seems the one which is most up to date and from what I have read is extremely capable!

A: 

http://www.dimecasts.net/Casts/ByTag/Rhino%20Mocks

Taught me a good deal about Rhino Mocks.

(Is this what you are asking?)

Martin
+1  A: 

If you haven't looked into it already, I'd recommend using MvcContrib's TestHelper. I tried to mock out my controllers and views and yadda yadda yadda but found myself getting in way over my head, and TestHelper does what I need it to (set controllers up so that I can test them). Internally it uses Rhino Mocks in places, but you could just as easily use Moq on your end if that makes your life easier.

48klocs