예제 #1
0
 public function testAskWithNullOptions()
 {
     $say = new Say("Please say your account number");
     $choices = new Choices("[5 DIGITS]");
     $options = array('say' => $say, 'choices' => $choices, 'timeout' => NULL);
     $tropo = new Tropo();
     $tropo->Ask($options);
     $this->assertEquals($this->expected, sprintf($tropo));
 }