The error message tells exactly what was wrong. Your event takes three
parameters

 serialController.ReadWrite += delegate(object sender, EventArgs e,
string message)

but you raised with only two parameters.

 serialStubEventRaiser.Raise(serialController, new EventArgs());

Change it to;

 serialStubEventRaiser.Raise(serialController, new EventArgs(), "");

HTH
Kenneth

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Rhino.Mocks" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rhinomocks?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to