Example #1
0
 /**
  * @covers oat\dtms\DateTime::__construct
  */
 public function testConstruct()
 {
     $dt = new DateTime();
     $this->assertInstanceOf('oat\\dtms\\DateTime', $dt);
     $this->assertObjectHasAttribute('microseconds', $dt);
     $dt = new DateTime('2015-08-08 10:10:10.123456');
     $this->assertSame(123456, $dt->getMicroseconds());
 }