コード例 #1
0
ファイル: TrelloTest.php プロジェクト: marc-coll/php-trello
 public function testBuildRequestUrl()
 {
     $this->assertEquals('https://api.trello.com/1/boards?param=value', self::$trello->buildRequestUrl('GET', 'boards', array('param' => 'value')));
     $this->assertEquals('https://api.trello.com/1/boards', self::$trello->buildRequestUrl('PUT', 'boards', array('param' => 'value')));
 }