I am want to do automocking with Windsor so that I can do something like
_controller = _autoMockingContainer.Create<MyControllerWithLoadsOfDepdencies>();
There used to be a Windsor auto mocking container in Ayende's Rhino libraries. But that doesn't seem to be maintained any more, so the dependencies are a bit old (it's using Castle Windsor 2, but we need 2.5 to be referenced), therefore causing dll hell.
Are there any viable alternatives? I tried pulling out the relevant classes from rhino testing, but it's much more involved that I can handle.
Thanks to @mookid8000's link and help from a colleague, I created this......which seems to do the trick.