Exemple #1
0
 /**
  * Test if archive can be set
  *
  * @test
  * @return void
  */
 public function archiveCanBeSet()
 {
     $archive = new DateTime();
     $this->newsDomainModelInstance->setArchive($archive);
     $this->assertEquals($archive, $this->newsDomainModelInstance->getArchive());
 }