コード例 #1
0
ファイル: dropbox_test.php プロジェクト: rugbyprof/Dropbox
 /**
  * Tests Dropbox->accountInfo()
  */
 public function testAccountInfo()
 {
     $response = $this->dropbox->accountInfo();
     $this->assertArrayHasKey('referral_link', $response);
     $this->assertArrayHasKey('display_name', $response);
     $this->assertArrayHasKey('uid', $response);
     $this->assertArrayHasKey('email', $response);
 }