I have this situation:
A method that expects a Type as one of its parameter;
This Type must be a Type that implements an Interface in the project;
I need to write tests for this method;
I'm using NMock2;
Is there any way to get a Type from NMock2 so I can use it as a parameter of this method instead of create an implementation of this interface?
Thanks!