setTitle('hello'); $this->assertSame('hello', $item->getTitle()); $item = FeedItem::fromArray(['title' => 'hello2']); $this->assertSame('hello2', $item->getTitle()); $item = new FeedItem(); $item->setAuthor('123'); $this->assertSame('123', $item->getAuthor()); $item = new FeedItem(); $item->title = 'aa'; $this->assertSame('aa', $item->getTitle()); $this->assertSame('aa', $item->title); } }