SMSMessageList() public method

public SMSMessageList ( String to = "", String from = "", System.DateTime dateSent = null ) : twilio.sugar.Model.SMS
to String
from String
dateSent System.DateTime
return twilio.sugar.Model.SMS
        public void SMSListShouldReturnListOfSMSResources()
        {
            var account = new TwilioAccountMock();
            var phoneAutomation = new PhoneAutomation(account);
            var smsList = phoneAutomation.SMSMessageList();

            Assert.IsNotNull(smsList);
            Assert.IsNotNull(smsList.sms_messages);
        }