I\'m trying to mock out the SearchResultCollection class. However, when I try to intercept a call to the PropertiesLoaded getter, my test throws an Exception:
This is not possible with Moq. You can only mock interfaces, abstract classes, and classes with virtual methods (and in the latter case, you can only use Setup() to mock the behavior of virtual methods).