I was looking for a way to fake an eventhandler using the AAA syntax. Is this possible? I am trying to use this in my MVP Webforms app and have an interface, IView, defined as such:
Public Interface IView
Event PageLoad as EventHandler
End Interface
Do I have to manually wire this up or should I use the natural mocks? I was under the impression that you shouldn't mix the modes.