Skip to content

Instantly share code, notes, and snippets.

@devinrader
Created April 12, 2013 16:08
Show Gist options
  • Save devinrader/5373129 to your computer and use it in GitHub Desktop.
Save devinrader/5373129 to your computer and use it in GitHub Desktop.
[TestMethod]
public void Should_Not_Send_Sms_Message_To_Nonmobile_Number()
{
var message = Notifications.CreateMessage(NONMOBILE_FAIL_TO_NUMBER);
message.Send(TEST_ACCOUNTSID, TEST_AUTHTOKEN);
Assert.AreEqual(MessageStatus.Fail, message.Status);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment