Ejemplo n.º 1
0
 public function testCreateFromFormat()
 {
     $this->assertFalse(DateTimeImmutable::createFromFormat('d/m/y/', 'not even a date!'));
     $date = DateTimeImmutable::createFromFormat('d/m/y h:ia', '3/4/92 1:40pm', new DateTimeZone('GMT'));
     $this->assertInstanceOf('Message\\Cog\\ValueObject\\DateTimeImmutable', $date);
     $this->assertSame(702308400, $date->getTimestamp());
 }