SendSMSMessage() public method

public SendSMSMessage ( String from, String to, String body, String statusCallback = "" ) : twilio.sugar.Model.SMSMessage
from String
to String
body String
statusCallback String
return twilio.sugar.Model.SMSMessage
        public void SendSMSMessageShouldReturnSMSMessageResource()
        {
            var account = new TwilioAccountMock();
            var phoneAutomation = new PhoneAutomation(account);
            var message = phoneAutomation.SendSMSMessage("Test_From", "Test_To", "Test_body");

            Assert.IsNotNull(message);
        }