Don’t you need to pass the argument? Your event signature is EventHandler, which is
(object sender, EventArgs e).
this.mockView.Raise(mock => mock.MyEvent += null, new EventArgs());
I’ve never used the overload you’ve specified here… it doesn’t seem correct, though.