getId()); self::assertEquals([], $list->getComments()); } public function testGetSet() : void { $list = new CommentList(); $comment = new Comment(); $comment->setTitle('Test Comment'); $list->addComment($comment); self::assertEquals('Test Comment', $list->getComments()[0]->getTitle()); } }