public function test_hasValue()
 {
     $this->assertTrue($this->object->has(123));
     $this->assertTrue($this->object->has(123.1));
     $this->assertFalse($this->object->has(123.099));
     $this->assertTrue($this->object->has(123.0));
     $this->setExpectedExceptionRegExp('zaboy\\scheduler\\DataStore\\TimelineDataStoreException', "/Specified id=\"[0-9.]+\" is out of range for Unix-time/");
     $this->object->has(PHP_INT_MAX + 0.01);
 }