/**
  * @dataProvider nextGenUriProvider
  */
 function testLookupsRequestUriConstructedProperly($path, $params, $full_uri, $expected)
 {
     $client = new Lookups_Services_Twilio('sid', 'token');
     $actual = $client->getRequestUri($path, $params, $full_uri);
     $this->assertSame($expected, $actual);
 }
 /**
  * @param string $sid
  * @param string $token
  */
 public function __construct($sid, $token)
 {
     parent::__construct($sid, $token);
 }