Example #1
0
 /**
  * Test if tstamp can be set
  *
  * @test
  * @return void
  */
 public function tstampCanBeSet()
 {
     $time = new \DateTime('now');
     $this->fileDomainModelInstance->setTstamp($time);
     $this->assertEquals($time, $this->fileDomainModelInstance->getTstamp());
 }