コード例 #1
0
ファイル: TwilioTest.php プロジェクト: homer6/sfAltumoPlugin
 /**
  * @dataProvider uriTestProvider
  */
 function testRequestUriConstructedProperly($path, $params, $full_uri, $end_string)
 {
     $this->assertSame($end_string, Services_Twilio::getRequestUri($path, $params, $full_uri));
 }
コード例 #2
0
 /**
  * @dataProvider uriTestProvider
  */
 function testRequestUriConstructedProperly($path, $params, $full_uri, $expected)
 {
     $client = new Services_Twilio('sid', 'token');
     $actual = $client->getRequestUri($path, $params, $full_uri);
     $this->assertSame($expected, $actual);
 }