Ejemplo n.º 1
0
 public function testSetTimestamp()
 {
     $date = new DateTimeImmutable('@' . time());
     $newDate = $date->setTimestamp(strtotime('-4 days'));
     $this->assertNotSame($date, $newDate);
     $this->assertNotEquals($date->getTimestamp(), $newDate->getTimestamp());
     $this->assertInstanceOf('Message\\Cog\\ValueObject\\DateTimeImmutable', $newDate);
 }