Exemplo n.º 1
0
 public function testGetDate()
 {
     $date = new Date(new Year(2013), Month::DECEMBER(), new MonthDay(3));
     $time = new Time(new Hour(20), new Minute(50), new Second(10));
     $dateTime = new DateTime($date, $time);
     $this->assertTrue($date->sameValueAs($dateTime->getDate()));
 }