I'm using this kind of wiring for my MVC and I want to test the controller. So far, I've found two ways : either my mock view dispatch events or my controller expose public methods.
Dispatching events seems the way to go (as pointed out in an answer), but if my view is a simple mock object, how do I dispatch those events?