Esempio n. 1
0
 public function testToString()
 {
     $object = new UTCTime('2012-09-23');
     $this->assertEquals("2012-09-23\t00:00:00", $object->__toString());
     $object = new UTCTime('2012-09-23 22:13:43');
     $this->assertEquals("2012-09-23\t22:13:43", $object->__toString());
 }