We are embarking on a new greenfield project in my company and it has been decided that we will use Microsoft's Moles framework for ALL our mocking in unit tests. My manager ideally does not want to introduce any other Mocking frameworks such as NSubstitute or Moq to complicated the project. However I have found that due to the nature in which Moles generates Mocks and Stubs that it does not work nicely with refactoring tools.
For example, we use resharper and if I had the following interface, moles will generate a stub like so:
IMyInterface -> SIMyInterface
Now if I were to refactor IMyInterface to another name such as: IMyNewInterface
then in my unit tests the Stub class is obviously NOT be refactored due to it fundamentally having a different name.
I can see this is a big problem once we get many permutations of unit tests, that refactoring will become a nightmare, and the mantra will be "Just don't change anything!"
Does anyone have similar experiences or know of a refactoring tool that can handle Moles?
Thanks both Merlyn and Mike. My team has decided to compromise and use Moles only for types that we can't mock with standard tools, and then use another framework such as NSubstitute for everything else.