Skip to content

Instantly share code, notes, and snippets.

@devinrader
Created April 12, 2013 16:10
Show Gist options
  • Save devinrader/5373144 to your computer and use it in GitHub Desktop.
Save devinrader/5373144 to your computer and use it in GitHub Desktop.
[TestMethod]
public void Should_Initiate_Outbound_Call_Successfully()
{
var call = Notifications.CreateCall(TO_NUMBER);
call.Initiate(TEST_ACCOUNTSID, TEST_AUTHTOKEN);
Assert.AreEqual(CallStatus.Success, call.Status);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment