/**
  * Test if author can be set
  *
  * @test
  * @return void
  */
 public function authorCanBeSet()
 {
     $author = 'News author';
     $this->newsDomainModelInstance->setAuthor($author);
     $this->assertEquals($author, $this->newsDomainModelInstance->getAuthor());
 }