コード例 #1
0
ファイル: S3UrlTest.php プロジェクト: vuhoanglinh2002/drupal
 /**
  * @covers Drupal\amazons3\S3Url::setKey
  * @covers Drupal\amazons3\S3Url::getKey
  */
 public function testGetKey()
 {
     $url = new S3Url('bucket');
     $url->setKey('key');
     $this->assertEquals('key', $url->getKey());
 }