public function testToSecondsUsingDaysNotSet()
 {
     $interval = new DateInterval('PT0S');
     $this->setExpectedException('InvalidArgumentException', 'The "days" property is not set.');
     DateInterval::toSecondsUsingDays($interval);
 }