When Calling MockManager.GetMocks on an interface like this
MockManager.GetMocks<ICache>();
I get no results when I have definitely mocked the interface. If I use the debugger and call
MockManager.GetMocks();
without specifying the type, I can see the mock sitting in the collection. If I call MockManager.GetMocks<ConcreteType> with a concreate type, I get the result expected.
For some reason Mocks of Interfaces dont seem to get returned from this operation. Is this by design or a bug?