Ejemplo n.º 1
0
 public function testModify()
 {
     $date = new DateTimeImmutable('01/01/2000 9:00am');
     $newDate = $date->modify('+2 days');
     $this->assertNotSame($date, $newDate);
     $this->assertNotEquals($date->getTimestamp(), $newDate->getTimestamp());
     $this->assertInstanceOf('Message\\Cog\\ValueObject\\DateTimeImmutable', $newDate);
 }