/**
  * @test
  * @group builder-get-news-title
  * @group builder
  */
 public function タイトルの取得()
 {
     $title = 'foo';
     $this->news->setTitle($title);
     $this->assertEquals($title, $this->news->getTitle());
 }