コード例 #1
0
ファイル: BookmarkTest.php プロジェクト: noichl/pw-bookmarks
 public function testGetsUrl()
 {
     $url = $this->getUrlMock();
     $comment = $this->getBookmarkCommentMock();
     $date = new DateTimeImmutable();
     $bookmark = new Bookmark($url, $comment, $date);
     $this->assertEquals($url, $bookmark->getWebsite());
 }