The examples I've seen of mocking events use events that are generated by an instance of a class. But in my application I have a number of derived classes that all need to raise events that a View class can subscribe to. So I have a static event in the base class that's raised from each derived classes and is declared as follows:
public static event EventHandler MyEvent;
Then the View class subscribes to this event as follows:
BaseClass.MyEvent += OnMyEvent;
Can I use TypeMock to test if this event been raised by a derived class operation?