Ejemplo n.º 1
0
 function test_month_DSTChangeOct()
 {
     $month = new Piwik_Period_Month(Piwik_Date::factory("2017-10-31"));
     $correct = array("2017-10-01", "2017-10-02", "2017-10-03", "2017-10-04", "2017-10-05", "2017-10-06", "2017-10-07", "2017-10-08", "2017-10-09", "2017-10-10", "2017-10-11", "2017-10-12", "2017-10-13", "2017-10-14", "2017-10-15", "2017-10-16", "2017-10-17", "2017-10-18", "2017-10-19", "2017-10-20", "2017-10-21", "2017-10-22", "2017-10-23", "2017-10-24", "2017-10-25", "2017-10-26", "2017-10-27", "2017-10-28", "2017-10-29", "2017-10-30", "2017-10-31");
     $this->assertEqual($month->toString(), $correct);
     $this->assertEqual($month->getNumberOfSubperiods(), 31);
 }