Example #1
0
 /**
  * Test if teaser can be set
  *
  * @test
  * @return void
  */
 public function teaserCanBeSet()
 {
     $teaser = 'News teaser';
     $this->newsDomainModelInstance->setTeaser($teaser);
     $this->assertEquals($teaser, $this->newsDomainModelInstance->getTeaser());
 }