Example #1
0
 /**
  * @dataProvider providerSplitDateTime
  */
 public function testSplitDateTime($datetime, $date, $time)
 {
     $this->assertEquals($date, $this->time_date->getDatePart($datetime));
     $this->assertEquals($time, $this->time_date->getTimePart($datetime));
 }