I am coming to c# from ruby on rails where I did TDD using Rspec and Mocha. I was looking to get into get into a mocking framework and an older stackoverflow post pointed me in the direction of MOQ and rhino mocks. I was hesitant to commit to either and am looking for a bit of advice or clarification or maybe just a pep talk...
Here were my concerns:
- Rhino mocks seems to be a bit out of date. A lot of the examples didn't even make use of generics because it seems like they weren't available when the framework was created
- Moq seems to be less powerful than Rhino mocks and it seems like you need to adapt your classes in order to mock them (either they must implement an interface or all methods must be virtual)
Am I way off base here? Am I missing something? Is there some cool new framework I should know about or do I just need to open my mind up and accept that mocking isn't the same for static languages?
(I know questions kinda like this have been asked in the past but they seem a little dated to me and I am interesting in what the latest hip new things are)