public void can_handle_an_action_message_with_approriate_name() { var message = new ActionMessage { MethodName = MethodName }; host.Expect(x => x.GetAction(message)).Return(Stub <IAction>()); var result = handler.Handles(message); result.ShouldBeTrue(); }