public void Can_I_Generate_Gather_With_Say() { var response = new Response(); response.Gather(Gather.Create("http://www.action-url.com").Say("Hello", Voice.man, null)); Assert.True(IsValidInboundXML(response.CreateXml())); }
public void Can_I_Generate_Gather() { var response = new Response(); response.Gather(Gather.Create("http://www.action-url.com")); Assert.True(IsValidInboundXML(response.CreateXml())); }
public void Can_I_Generate_Gather_With_Attributes() { var response = new Response(); response.Gather(Gather.Create("http://www.action-url.com", null, 10, "#", 10)); Assert.True(IsValidInboundXML(response.CreateXml())); }