public void PostCallbacksTest()
        {
            // TODO: add unit test for the method 'PostCallbacks'
            CreateCallbackCommand body = null; // TODO: replace null with proper value
            var response = instance.PostCallbacks(body);

            Assert.IsInstanceOf <CreateCallbackResponse> (response, "response is CreateCallbackResponse");
        }
        public void PostConversationIdParticipantsParticipantIdCallbacksTest()
        {
            // TODO: add unit test for the method 'PostConversationIdParticipantsParticipantIdCallbacks'
            string conversationId      = null; // TODO: replace null with proper value
            string participantId       = null; // TODO: replace null with proper value
            CreateCallbackCommand body = null; // TODO: replace null with proper value

            instance.PostConversationIdParticipantsParticipantIdCallbacks(conversationId, participantId, body);
        }
Example #3
0
 public void Init()
 {
     instance = new CreateCallbackCommand();
 }