コード例 #1
0
ファイル: GranteeTest.php プロジェクト: njbhatt18/Amazon_API
 public function testDisplayNameSetToIdWhenNotSpecified()
 {
     $grantee = new Grantee('1234567890');
     $this->assertEquals('1234567890', $grantee->getId());
     $this->assertEquals('1234567890', $grantee->getDisplayName());
 }