public function testReject()
 {
     $r = new Services_Twilio_Twiml();
     $r->reject();
     $expected = '<Response><Reject></Reject></Response>';
     $this->assertXmlStringEqualsXmlString($expected, $r);
 }