Пример #1
0
        public void delegates_to_the_remote_controller_if_no_matching_handler()
        {
            var json = "{foo: 1}";

            theConnector.HandleJson(json);

            theRemoteController.Received().SendJsonMessage(json);
        }