Generics and NMock

Maybe NMock supports this, but I can’t see how. [Update 20/10/2007 – of course it does! See the comments for Aybars and Rob’s solution.] Let’s say I have a dependency of my SUT (system under test). That dependency looks like: public interface IDatabase { void Get<TTypeToFetch> (); } Now in my test, I want to …